From c963098e2890922ffcf0991466ba66f724e2dfa4 Mon Sep 17 00:00:00 2001
From: Carl Worth <cworth@cworth.org>
Date: Mon, 8 Mar 2010 17:24:34 -0800
Subject: [PATCH] emacs:  Unbreak notmuch-show-rewind (the function to which
 Backspace is bound)

Commit 095a02211e696434e5b41a85ab516b3a639f9a9b broke the backspace
key by trying to execute nil as a function, (which obviously won't
work), when it was intended as a return value. Fix this now, (and pine
for a test suite that exercises the emacs user-interface of notmuch).
---
 notmuch.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/notmuch.el b/notmuch.el
index 5577dde7..cd4d9963 100644
--- a/notmuch.el
+++ b/notmuch.el
@@ -592,7 +592,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)
-- 
2.45.2