diff options
| author | Carl Worth <cworth@cworth.org> | 2010-02-05 11:14:25 -0800 |
|---|---|---|
| committer | Carl Worth <cworth@cworth.org> | 2010-02-05 11:31:38 -0800 |
| commit | 78c85f053b28be0ed6c42981bc028739a98d3d93 (patch) | |
| tree | 6f1ad608584e3ea2781ccfc72c446a621e9f5fdc | |
| parent | ee3e7416f0b341db809d3912d0dea08df2ac56c2 (diff) | |
Use forward-line instead of next-line
We do this all the time, but at least emacs is kind enough to remind us,
(when compiling), that next-line is only intended for interactive use,
and we should use forward-line inside of lisp code.
| -rw-r--r-- | notmuch.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -595,7 +595,7 @@ which this thread was originally shown." (interactive) (save-excursion (notmuch-show-move-to-current-message-summary-line) - (next-line) + (forward-line) (unless (button-at (point)) (notmuch-show-next-button)) (push-button)) |
