1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-03 14:10:47 -08:00

(next-error-follow-minor-mode): Fix last change.

This commit is contained in:
Eli Zaretskii 2004-09-06 18:51:57 +00:00
parent c28e534b74
commit 8a98a6c2fe
2 changed files with 5 additions and 1 deletions

View 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

View 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)))