mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
emacs: Unbreak notmuch-show-rewind (the function to which Backspace is bound)
Commit 095a02211e
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).
This commit is contained in:
parent
095a02211e
commit
c963098e28
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue