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:
Carl Worth 2009-11-30 09:48:15 -08:00
parent a2a522a758
commit 0671436872

View file

@ -877,7 +877,7 @@ thread from that buffer can be show when done with this one)."
(setq btn (forward-button 1))
(error (setq btn nil)))
))
(beginning-of-buffer)
(goto-char (point-min))
))))
)))