# HG changeset patch # User Stefan Monnier # Date 1259029292 0 # Node ID d82b527709ef301214d1d42b41cb43feadf16c7a # Parent c89e7ab6a9d617022c3ff0c62d8c09931014320d (bookmark-bmenu-search): Clear echo area when exiting. diff -r c89e7ab6a9d6 -r d82b527709ef lisp/ChangeLog --- a/lisp/ChangeLog Mon Nov 23 20:58:55 2009 +0000 +++ b/lisp/ChangeLog Tue Nov 24 02:21:32 2009 +0000 @@ -1,3 +1,7 @@ +2009-11-24 Stefan Monnier + + * bookmark.el (bookmark-bmenu-search): Clear echo area when exiting. + 2009-11-23 Ken Brown (tiny change) * net/browse-url.el (browse-url-filename-alist): On Windows, add @@ -10,8 +14,9 @@ Implement DocView Continuous mode. (Bug#4896) * doc-view.el (doc-view-continuous-mode): New defcustom. - (doc-view-mode-map): Bind C-n/ to `doc-view-next-line-or-next-page', - C-p/ to `doc-view-previous-line-or-previous-page'. + (doc-view-mode-map): Bind C-n/ to + `doc-view-next-line-or-next-page', C-p/ to + `doc-view-previous-line-or-previous-page'. (doc-view-next-line-or-next-page) (doc-view-previous-line-or-previous-page): New commands. @@ -114,12 +119,13 @@ (viper-prefix-arg-value): Do correct conversion of event-char for XEmacs. - * emulation/viper-util.el, emulation/viper.el: Use - viper-last-command-char instead of last-command-char/last-command-event. - - * ediff-init.el, ediff-mult.el, ediff-util.el: Replace - last-command-char and last-command-event with (ediff-last-command-char) - everywhere. + * emulation/viper-util.el, emulation/viper.el: + Use viper-last-command-char instead of + last-command-char/last-command-event. + + * ediff-init.el, ediff-mult.el, ediff-util.el: + Replace last-command-char and last-command-event + with (ediff-last-command-char) everywhere. * ediff-vers.el (ediff-rcs-get-output-buffer): Make sure the buffer is created in fundamental mode. @@ -135,8 +141,8 @@ 2009-11-21 Chong Yidong * cedet/semantic/complete.el (semantic-complete-read-tag-engine) - (semantic-complete-jump-local, semantic-complete-jump): Improve - prompt string. + (semantic-complete-jump-local, semantic-complete-jump): + Improve prompt string. 2009-11-21 Jan Djärv @@ -144,13 +150,13 @@ 2009-11-21 Nathaniel Flath - * progmodes/cc-menus.el (cc-imenu-java-generic-expression): A - corrected version of the patch from 2009-11-18. (Bug#3910) + * progmodes/cc-menus.el (cc-imenu-java-generic-expression): + Correct the patch from 2009-11-18. (Bug#3910) 2009-11-21 Alan Mackenzie - * progmodes/cc-menus.el (cc-imenu-java-generic-expression): Update - to deal with modern Java constructs. + * progmodes/cc-menus.el (cc-imenu-java-generic-expression): + Update to deal with modern Java constructs. 2009-11-21 Tassilo Horn diff -r c89e7ab6a9d6 -r d82b527709ef lisp/bookmark.el --- a/lisp/bookmark.el Mon Nov 23 20:58:55 2009 +0000 +++ b/lisp/bookmark.el Tue Nov 24 02:21:32 2009 +0000 @@ -2097,6 +2097,7 @@ (unwind-protect (bookmark-read-search-input) (cancel-timer timer) + (message nil) (when bookmark-quit-flag ; C-g hit restore menu list. (bookmark-bmenu-list) (bookmark-bmenu-goto-bookmark bmk)) (setq bookmark-quit-flag nil))))