aboutsummaryrefslogtreecommitdiffhomepage
path: root/notmuch.el
diff options
context:
space:
mode:
authorGravatar Keith Packard <keithp@keithp.com>2009-11-16 19:05:02 -0800
committerGravatar Keith Packard <keithp@keithp.com>2009-11-16 22:10:36 -0800
commitdac31c9e01a18130f141994c98a48800cdb03efa (patch)
treefb78a2d6d5fe0acecd190b2d338978080049967a /notmuch.el
parent057b3060e8badb1bba7d0d24cd0a05148113e2e2 (diff)
Use 'forward-line' instead of 'next-line' while walking search display
The documentation for 'next-line' suggests that 'forward-line' is a better choice for non-interactive usage. That appears to be the case here; using next-line caused emacs to spin forever for me. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'notmuch.el')
-rw-r--r--notmuch.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/notmuch.el b/notmuch.el
index cf18c95f..8894a8e1 100644
--- a/notmuch.el
+++ b/notmuch.el
@@ -791,7 +791,7 @@ global search.
(goto-char (point-min))
(while (not (eobp))
(notmuch-search-markup-this-thread-id)
- (next-line))))
+ (forward-line))))
(defun notmuch-search-show-thread ()
(interactive)