From: Richard M. Stallman Date: Tue, 9 Feb 1999 09:14:34 +0000 (+0000) Subject: (compile-auto-highlight): Customize. X-Git-Tag: emacs-20.4~661 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4315d68ee5bdc204b155b80e532148ac9fb4019c;p=emacs.git (compile-auto-highlight): Customize. --- 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.