From 9ec9662ec74e1ed2f569d77008324d2a272749ae Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Mon, 30 Nov 2009 23:05:32 -0800 Subject: [PATCH] notmuch.el: Avoid calling next/previous-line non-interactively. Emacs always complains if we use these from lisp code. --- notmuch.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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." -- 2.43.0