]> code.delx.au - gnu-emacs/commitdiff
(compilation-message-face): Make it defcustom.
authorRichard M. Stallman <rms@gnu.org>
Sun, 2 Apr 2006 20:21:11 +0000 (20:21 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 2 Apr 2006 20:21:11 +0000 (20:21 +0000)
lisp/ChangeLog
lisp/progmodes/compile.el

index a265db673691e2cb8627513d2a0f07bbfed0a13b..998c2eb94277fb7a9fb2a9705c90d740f6f19982 100644 (file)
@@ -1,3 +1,7 @@
+2006-04-02  Richard Stallman  <rms@gnu.org>
+
+       * progmodes/compile.el (compilation-message-face): Make it defcustom.
+
 2006-04-02  Dan Nicolaescu  <dann@ics.uci.edu>
 
        * ibuf-macs.el (define-ibuffer-column): Add a new key:
index b1f02ed2ebf7ac129414776ce490ff0b9f6024ea..2fa3ee0ff15567f5e6dcf1d1d7eff52025719fc6 100644 (file)
@@ -527,11 +527,14 @@ starting the compilation process.")
   :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.")