[notmuch] [PATCH] notmuch.el: Fix nil return from notmuch-show-previous-message-without-marking-read.

Subject: [notmuch] [PATCH] notmuch.el: Fix nil return from notmuch-show-previous-message-without-marking-read.

Date: Wed, 3 Mar 2010 08:18:19 +0000

To: notmuch@notmuchmail.org

Cc:

From: David Edmondson


---
 notmuch.el |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/notmuch.el b/notmuch.el
index 3bdd046..2e0186b 100644
--- a/notmuch.el
+++ b/notmuch.el
@@ -611,7 +611,7 @@ Returns nil if already on the first message in the buffer."
 	      nil
 	    t))
       (recenter 0)
-      (nil))))
+      nil)))
 
 (defun notmuch-show-previous-message ()
   "Backup to the previous message (whether open or closed)
-- 
1.7.0


Thread: