svn commit: r552117 - in branches/2020Q4/mail/neomutt: . files
Baptiste Daroussin
bapt at FreeBSD.org
Mon Oct 12 10:30:20 UTC 2020
Author: bapt
Date: Mon Oct 12 10:30:19 2020
New Revision: 552117
URL: https://svnweb.freebsd.org/changeset/ports/552117
Log:
MFH: r552116
incorporate a side fix from upstream
PR: 250097
Submitted by: Michael Bueker <m.bueker at berlin.de>
Added:
branches/2020Q4/mail/neomutt/files/patch-sidebar_functions.c
- copied unchanged from r552116, head/mail/neomutt/files/patch-sidebar_functions.c
Modified:
branches/2020Q4/mail/neomutt/Makefile
Directory Properties:
branches/2020Q4/ (props changed)
Modified: branches/2020Q4/mail/neomutt/Makefile
==============================================================================
--- branches/2020Q4/mail/neomutt/Makefile Mon Oct 12 10:28:46 2020 (r552116)
+++ branches/2020Q4/mail/neomutt/Makefile Mon Oct 12 10:30:19 2020 (r552117)
@@ -2,6 +2,7 @@
PORTNAME= neomutt
PORTVERSION= 20200925
+PORTREVISION= 1
CATEGORIES= mail
MAINTAINER= bapt at FreeBSD.org
Copied: branches/2020Q4/mail/neomutt/files/patch-sidebar_functions.c (from r552116, head/mail/neomutt/files/patch-sidebar_functions.c)
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ branches/2020Q4/mail/neomutt/files/patch-sidebar_functions.c Mon Oct 12 10:30:19 2020 (r552117, copy of r552116, head/mail/neomutt/files/patch-sidebar_functions.c)
@@ -0,0 +1,20 @@
+--- sidebar/functions.c.orig 2020-10-04 15:20:02 UTC
++++ sidebar/functions.c
+@@ -72,7 +72,7 @@ static struct SbEntry **next_new(struct
+ struct SbEntry **sbep = NULL;
+ ARRAY_FOREACH_FROM_TO(sbep, &wdata->entries, begin, end)
+ {
+- if ((*sbep)->mailbox->has_new && (*sbep)->mailbox->msg_unread != 0)
++ if ((*sbep)->mailbox->has_new || (*sbep)->mailbox->msg_unread != 0)
+ return sbep;
+ }
+ return NULL;
+@@ -143,7 +143,7 @@ static struct SbEntry **prev_new(struct
+ struct SbEntry **sbep = NULL, **prev = NULL;
+ ARRAY_FOREACH_FROM_TO(sbep, &wdata->entries, begin, end)
+ {
+- if ((*sbep)->mailbox->has_new && (*sbep)->mailbox->msg_unread != 0)
++ if ((*sbep)->mailbox->has_new || (*sbep)->mailbox->msg_unread != 0)
+ prev = sbep;
+ }
+
More information about the svn-ports-all
mailing list