diff options
Diffstat (limited to 'lisp/progmodes/compile.el')
| -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 @@ integer) :group 'compilation) -(defvar compile-auto-highlight nil +(defcustom compile-auto-highlight nil "*Specify how many compiler errors to highlight (and parse) initially. \(Highlighting applies to an error message when the mouse is over it.) 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 move to the error messages. Those messages which are not parsed and highlighted initially -will be parsed and highlighted as soon as you try to move to them.") +will be parsed and highlighted as soon as you try to move to them." + :type '(choice (const :tag "All" t) + (const :tag "None" nil) + (integer :tag "First N lines")) + :group 'compilation) (defvar compilation-error-list nil "List of error message descriptors for visiting erring functions. |
