Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 12 Oct 2020 10:30:19 +0000 (UTC)
From:      Baptiste Daroussin <bapt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r552117 - in branches/2020Q4/mail/neomutt: . files
Message-ID:  <202010121030.09CAUJSb059596@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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@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;
+   }
+ 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202010121030.09CAUJSb059596>