# HG changeset patch # User Dan Nicolaescu # Date 1124126630 0 # Node ID 942d4ce7c22d757b53bd5e7a124d925d04a4ef1f # Parent 31195f42e486a6422517f6d1cf1613269e126ecd (next-error-follow-minor-mode): Fix init value and ligher. diff -r 31195f42e486 -r 942d4ce7c22d lisp/ChangeLog --- 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 + + * simple.el (next-error-follow-minor-mode): Fix init value and + ligher. + 2005-08-15 Kim F. Storm * emulation/cua-base.el (cua-delete-region): Return t if diff -r 31195f42e486 -r 942d4ce7c22d lisp/simple.el --- 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)