mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
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.
This commit is contained in:
parent
ee3e7416f0
commit
78c85f053b
1 changed files with 1 additions and 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))
|
||||
|
|
Loading…
Reference in a new issue