From: Carl Worth Date: Tue, 1 Dec 2009 07:05:32 +0000 (-0800) Subject: notmuch.el: Avoid calling next/previous-line non-interactively. X-Git-Tag: 0.1~279 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=9ec9662ec74e1ed2f569d77008324d2a272749ae notmuch.el: Avoid calling next/previous-line non-interactively. Emacs always complains if we use these from lisp code. --- diff --git a/notmuch.el b/notmuch.el index 118c0ee7..28ef5c6b 100644 --- a/notmuch.el +++ b/notmuch.el @@ -158,7 +158,7 @@ Unlike builtin `next-line' this version accepts no arguments." By advancing forward until reaching a visible character. -Unlike builtin `next-line' this version accepts no arguments." +Unlike builtin `previous-line' this version accepts no arguments." (interactive) (set 'this-command 'previous-line) (call-interactively 'previous-line) @@ -1007,12 +1007,12 @@ thread from that buffer can be show when done with this one)." (defun notmuch-search-next-thread () "Select the next thread in the search results." (interactive) - (next-line)) + (forward-line 1)) (defun notmuch-search-previous-thread () "Select the previous thread in the search results." (interactive) - (previous-line)) + (forward-line -1)) (defun notmuch-search-last-thread () "Select the last thread in the search results."