diff options
| author | Dan Nicolaescu | 2005-08-15 17:23:50 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2005-08-15 17:23:50 +0000 |
| commit | ed8e0f0aab3f09ab2c1a27e06fbce8b796e1f003 (patch) | |
| tree | e1f93e50e9ec6d62ed7114f19e8d2fe6fb9b5127 | |
| parent | 4ccda9c39996e5f12161e693a4a2bb10c1c038b3 (diff) | |
| download | emacs-ed8e0f0aab3f09ab2c1a27e06fbce8b796e1f003.tar.gz emacs-ed8e0f0aab3f09ab2c1a27e06fbce8b796e1f003.zip | |
(next-error-follow-minor-mode): Fix init value and
ligher.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/simple.el | 2 |
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 @@ | |||
| 1 | 2005-08-15 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 2 | |||
| 3 | * simple.el (next-error-follow-minor-mode): Fix init value and | ||
| 4 | ligher. | ||
| 5 | |||
| 1 | 2005-08-15 Kim F. Storm <storm@cua.dk> | 6 | 2005-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." | |||
| 308 | When turned on, cursor motion in the compilation, grep, occur or diff | 308 | When turned on, cursor motion in the compilation, grep, occur or diff |
| 309 | buffer causes automatic display of the corresponding source code | 309 | buffer causes automatic display of the corresponding source code |
| 310 | location." | 310 | location." |
| 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) |