diff options
| author | Richard M. Stallman | 1999-02-09 09:14:34 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1999-02-09 09:14:34 +0000 |
| commit | 4315d68ee5bdc204b155b80e532148ac9fb4019c (patch) | |
| tree | 2dda20336f4b3fb3b4712de62d776584f1106105 /lisp | |
| parent | 6f108a37b6b0d5b72446e765cf92465bf4c6b603 (diff) | |
| download | emacs-4315d68ee5bdc204b155b80e532148ac9fb4019c.tar.gz emacs-4315d68ee5bdc204b155b80e532148ac9fb4019c.zip | |
(compile-auto-highlight): Customize.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/progmodes/compile.el | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el index 93e22bd3e58..216efddb0a9 100644 --- a/lisp/progmodes/compile.el +++ b/lisp/progmodes/compile.el | |||
| @@ -49,7 +49,7 @@ | |||
| 49 | integer) | 49 | integer) |
| 50 | :group 'compilation) | 50 | :group 'compilation) |
| 51 | 51 | ||
| 52 | (defvar compile-auto-highlight nil | 52 | (defcustom compile-auto-highlight nil |
| 53 | "*Specify how many compiler errors to highlight (and parse) initially. | 53 | "*Specify how many compiler errors to highlight (and parse) initially. |
| 54 | \(Highlighting applies to an error message when the mouse is over it.) | 54 | \(Highlighting applies to an error message when the mouse is over it.) |
| 55 | If this is a number N, all compiler error messages in the first N lines | 55 | If this is a number N, all compiler error messages in the first N lines |
| @@ -59,7 +59,11 @@ If nil, don't highlight or parse any of the buffer until you try to | |||
| 59 | move to the error messages. | 59 | move to the error messages. |
| 60 | 60 | ||
| 61 | Those messages which are not parsed and highlighted initially | 61 | Those messages which are not parsed and highlighted initially |
| 62 | will be parsed and highlighted as soon as you try to move to them.") | 62 | will be parsed and highlighted as soon as you try to move to them." |
| 63 | :type '(choice (const :tag "All" t) | ||
| 64 | (const :tag "None" nil) | ||
| 65 | (integer :tag "First N lines")) | ||
| 66 | :group 'compilation) | ||
| 63 | 67 | ||
| 64 | (defvar compilation-error-list nil | 68 | (defvar compilation-error-list nil |
| 65 | "List of error message descriptors for visiting erring functions. | 69 | "List of error message descriptors for visiting erring functions. |