From: Dan Nicolaescu Date: Mon, 15 Aug 2005 17:23:50 +0000 (+0000) Subject: (next-error-follow-minor-mode): Fix init value and X-Git-Tag: emacs-pretest-22.0.90~7567 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ed8e0f0aab3f09ab2c1a27e06fbce8b796e1f003;p=emacs.git (next-error-follow-minor-mode): Fix init value and ligher. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 98357f096e7..f1411981541 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -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 --git a/lisp/simple.el b/lisp/simple.el index 9fceb68f8d2..cf291ca44ff 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -308,7 +308,7 @@ select the source buffer." 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)