From 0671436872a37589003860ab31bac40ed04a7cce Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Mon, 30 Nov 2009 09:48:15 -0800 Subject: [PATCH] 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. --- notmuch.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) )))) ))) -- 2.43.0