Mercurial > emacs
changeset 64991:942d4ce7c22d
(next-error-follow-minor-mode): Fix init value and
ligher.
author | Dan Nicolaescu <dann@ics.uci.edu> |
---|---|
date | Mon, 15 Aug 2005 17:23:50 +0000 |
parents | 31195f42e486 |
children | ca80d536ea6d |
files | lisp/ChangeLog lisp/simple.el |
diffstat | 2 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Mon Aug 15 14:51:27 2005 +0000 +++ b/lisp/ChangeLog Mon Aug 15 17:23:50 2005 +0000 @@ -1,3 +1,8 @@ +2005-08-15 Dan Nicolaescu <dann@ics.uci.edu> + + * simple.el (next-error-follow-minor-mode): Fix init value and + ligher. + 2005-08-15 Kim F. Storm <storm@cua.dk> * emulation/cua-base.el (cua-delete-region): Return t if
--- a/lisp/simple.el Mon Aug 15 14:51:27 2005 +0000 +++ b/lisp/simple.el Mon Aug 15 17:23:50 2005 +0000 @@ -308,7 +308,7 @@ When turned on, cursor motion in the compilation, grep, occur or diff buffer causes automatic display of the corresponding source code location." - :group 'next-error :init-value " Fol" + :group 'next-error :init-value nil :lighter " Fol" (if (not next-error-follow-minor-mode) (remove-hook 'post-command-hook 'next-error-follow-mode-post-command-hook t) (add-hook 'post-command-hook 'next-error-follow-mode-post-command-hook nil t)