mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 10:58:10 +01:00
notmuch.el: Don't use beginning-of-buffer from elisp program.
This silences a warning when compiling notmuch.el. The documentation of beginning-of-buffer does say (rather emphatically) that it's not to be used from lisp programs.
This commit is contained in:
parent
a2a522a758
commit
0671436872
1 changed files with 1 additions and 1 deletions
|
@ -877,7 +877,7 @@ thread from that buffer can be show when done with this one)."
|
||||||
(setq btn (forward-button 1))
|
(setq btn (forward-button 1))
|
||||||
(error (setq btn nil)))
|
(error (setq btn nil)))
|
||||||
))
|
))
|
||||||
(beginning-of-buffer)
|
(goto-char (point-min))
|
||||||
))))
|
))))
|
||||||
)))
|
)))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue