diff options
Diffstat (limited to 'mail/neomutt/files/patch-sidebar_functions.c')
-rw-r--r-- | mail/neomutt/files/patch-sidebar_functions.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/mail/neomutt/files/patch-sidebar_functions.c b/mail/neomutt/files/patch-sidebar_functions.c deleted file mode 100644 index 590c88b6f8ef..000000000000 --- a/mail/neomutt/files/patch-sidebar_functions.c +++ /dev/null @@ -1,20 +0,0 @@ ---- 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; - } - |