aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Nicolaescu2005-08-15 17:23:50 +0000
committerDan Nicolaescu2005-08-15 17:23:50 +0000
commited8e0f0aab3f09ab2c1a27e06fbce8b796e1f003 (patch)
treee1f93e50e9ec6d62ed7114f19e8d2fe6fb9b5127
parent4ccda9c39996e5f12161e693a4a2bb10c1c038b3 (diff)
downloademacs-ed8e0f0aab3f09ab2c1a27e06fbce8b796e1f003.tar.gz
emacs-ed8e0f0aab3f09ab2c1a27e06fbce8b796e1f003.zip
(next-error-follow-minor-mode): Fix init value and
ligher.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/simple.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 98357f096e7..f1411981541 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12005-08-15 Dan Nicolaescu <dann@ics.uci.edu>
2
3 * simple.el (next-error-follow-minor-mode): Fix init value and
4 ligher.
5
12005-08-15 Kim F. Storm <storm@cua.dk> 62005-08-15 Kim F. Storm <storm@cua.dk>
2 7
3 * emulation/cua-base.el (cua-delete-region): Return t if 8 * 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."
308When turned on, cursor motion in the compilation, grep, occur or diff 308When turned on, cursor motion in the compilation, grep, occur or diff
309buffer causes automatic display of the corresponding source code 309buffer causes automatic display of the corresponding source code
310location." 310location."
311 :group 'next-error :init-value " Fol" 311 :group 'next-error :init-value nil :lighter " Fol"
312 (if (not next-error-follow-minor-mode) 312 (if (not next-error-follow-minor-mode)
313 (remove-hook 'post-command-hook 'next-error-follow-mode-post-command-hook t) 313 (remove-hook 'post-command-hook 'next-error-follow-mode-post-command-hook t)
314 (add-hook 'post-command-hook 'next-error-follow-mode-post-command-hook nil t) 314 (add-hook 'post-command-hook 'next-error-follow-mode-post-command-hook nil t)