aboutsummaryrefslogtreecommitdiffhomepage
path: root/notmuch.el
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2009-11-30 09:48:15 -0800
committerGravatar Carl Worth <cworth@cworth.org>2009-11-30 09:48:15 -0800
commit0671436872a37589003860ab31bac40ed04a7cce (patch)
tree5e2df598d65c20968a68e58020ffa814a92e0a51 /notmuch.el
parenta2a522a758518d19e0cf4b96cf3c55287b0fbf4f (diff)
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.
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 65473ba7..9b23e351 100644
--- a/notmuch.el
+++ b/notmuch.el
@@ -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))
))))
)))