]> git.eshelyaron.com Git - emacs.git/commitdiff
(next-error-follow-minor-mode): Fix init value and
authorDan Nicolaescu <dann@ics.uci.edu>
Mon, 15 Aug 2005 17:23:50 +0000 (17:23 +0000)
committerDan Nicolaescu <dann@ics.uci.edu>
Mon, 15 Aug 2005 17:23:50 +0000 (17:23 +0000)
ligher.

lisp/ChangeLog
lisp/simple.el

index 98357f096e7be175a886688ff40efb2f9b8caffa..f1411981541213db38feebe83dd902a96b86afc2 100644 (file)
@@ -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
index 9fceb68f8d216653c331416a9d26394ef0de3e49..cf291ca44ff0c9c5d5e48755f68b96673f7217dd 100644 (file)
@@ -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)