diff lisp/progmodes/compile.el @ 69765:1a3385f6eeec

(compilation-message-face): Make it defcustom.
author Richard M. Stallman <rms@gnu.org>
date Sun, 02 Apr 2006 20:21:04 +0000
parents dc49655f57ae
children 63b772bfba93 65ca8fb66a0d
line wrap: on
line diff
--- a/lisp/progmodes/compile.el	Sun Apr 02 19:17:34 2006 +0000
+++ b/lisp/progmodes/compile.el	Sun Apr 02 20:21:04 2006 +0000
@@ -527,11 +527,14 @@
   :group 'compilation
   :version "22.1")
 
-(defvar compilation-message-face 'underline
+(defcustom compilation-message-face 'underline
   "Face name to use for whole messages.
 Faces `compilation-error-face', `compilation-warning-face',
 `compilation-info-face', `compilation-line-face' and
-`compilation-column-face' get prepended to this, when applicable.")
+`compilation-column-face' get prepended to this, when applicable."
+  :type 'face
+  :group 'compilation
+  :version "22.1")
 
 (defvar compilation-error-face 'compilation-error
   "Face name to use for file name in error messages.")