]> git.eshelyaron.com Git - emacs.git/commitdiff
(next-error-follow-minor-mode): Fix last change.
authorEli Zaretskii <eliz@gnu.org>
Mon, 6 Sep 2004 18:51:57 +0000 (18:51 +0000)
committerEli Zaretskii <eliz@gnu.org>
Mon, 6 Sep 2004 18:51:57 +0000 (18:51 +0000)
lisp/ChangeLog
lisp/simple.el

index dbc912323338f5ceed5f54a9ab541c20cdaac6e0..641f08870ac53e3a5fa4a7fd91fc9fc724783022 100644 (file)
@@ -1,3 +1,7 @@
+2004-09-06  Eli Zaretskii  <eliz@gnu.org>
+
+       * simple.el (next-error-follow-minor-mode): Fix last change.
+
 2004-09-05  Luc Teirlinck  <teirllm@auburn.edu>
 
        * textmodes/paragraphs.el (use-hard-newlines): Make it into a
index 32405153788caca6a319d2a6c15497025dc33561..75d2cef8499e5430c369d1fa04fdaf7eef9a54db 100644 (file)
@@ -259,7 +259,7 @@ When turned on, cursor motion in the compilation, grep, occur or diff
 buffer causes automatic display of the corresponding source code
 location."
   nil " Fol" nil
-  (if (not next-error-follow-mode)
+  (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)
     (make-variable-buffer-local 'next-error-follow-last-line)))