diff options
author | Carl Worth <cworth@cworth.org> | 2010-04-26 18:00:37 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2010-04-26 18:00:37 -0700 |
commit | 652e92c6cc5c9e905e205deffb75a20cc85a38d6 (patch) | |
tree | 19fc7bc2cadc0481a19e1fdf11e18c480a850b18 /emacs | |
parent | ddce8438a086fdc79d72f5b9fae364199d33c6bd (diff) |
emacs: Take advantage of position-remembering when returning to notmuch-hello
When we go into a search, and then later quit and return to the
notmuch-hello buffer, we want the point to remain in the same position
it was in when we left. So we have to call the position-remembering
notmuch-hello-update rather than notmuch-hello from the continuation.
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/notmuch-hello.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emacs/notmuch-hello.el b/emacs/notmuch-hello.el index f68fdb5b..1b33ef75 100644 --- a/emacs/notmuch-hello.el +++ b/emacs/notmuch-hello.el @@ -193,7 +193,7 @@ diagonal." (defimage notmuch-hello-logo ((:type png :file "notmuch-logo.png"))) (defun notmuch-hello-search-continuation() - (notmuch-hello t)) + (notmuch-hello-update t)) (defun notmuch-hello-update (&optional no-display) ;; Lazy - rebuild everything. |