aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2010-03-08 17:24:34 -0800
committerGravatar Carl Worth <cworth@cworth.org>2010-03-09 08:11:37 -0800
commitc963098e2890922ffcf0991466ba66f724e2dfa4 (patch)
tree1c8d845c8fa41fdd2785a72516e5d3082f02b282
parent095a02211e696434e5b41a85ab516b3a639f9a9b (diff)
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).
-rw-r--r--notmuch.el2
1 files changed, 1 insertions, 1 deletions
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)