diff options
| author | Dan Nicolaescu | 2007-07-20 20:25:32 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2007-07-20 20:25:32 +0000 |
| commit | 765831a0749719d0e7e5b91cf1576689eb04cc36 (patch) | |
| tree | 16091fd1d000d5a2597a64ac30b5735dd98b0613 | |
| parent | ad4573c72b664a612d182a55fc04788132aeba39 (diff) | |
| download | emacs-765831a0749719d0e7e5b91cf1576689eb04cc36.tar.gz emacs-765831a0749719d0e7e5b91cf1576689eb04cc36.zip | |
(compilation-auto-jump-to-first-error): Add
group and version.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/progmodes/compile.el | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b5e5b530b8b..0404053f717 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2007-07-20 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 2 | |||
| 3 | * progmodes/compile.el (compilation-auto-jump-to-first-error): Add | ||
| 4 | group and version. | ||
| 5 | |||
| 1 | 2007-07-20 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2007-07-20 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 7 | ||
| 3 | * add-log.el (add-log-file-name): Use file-relative-name. | 8 | * add-log.el (add-log-file-name): Use file-relative-name. |
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index a7535cd523a..0c57e6f55b1 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el | |||
| @@ -607,7 +607,9 @@ Faces `compilation-error-face', `compilation-warning-face', | |||
| 607 | 607 | ||
| 608 | (defcustom compilation-auto-jump-to-first-error nil | 608 | (defcustom compilation-auto-jump-to-first-error nil |
| 609 | "If non-nil, automatically jump to the first error after `compile'." | 609 | "If non-nil, automatically jump to the first error after `compile'." |
| 610 | :type 'boolean) | 610 | :type 'boolean |
| 611 | :group 'compilation | ||
| 612 | :version "23.1") | ||
| 611 | 613 | ||
| 612 | (defvar compilation-auto-jump-to-next nil | 614 | (defvar compilation-auto-jump-to-next nil |
| 613 | "If non-nil, automatically jump to the next error encountered.") | 615 | "If non-nil, automatically jump to the next error encountered.") |