aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/progmodes/compile.el7
2 files changed, 9 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index a265db6736..998c2eb942 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
+2006-04-02 Richard Stallman <[email protected]>
+
+ * progmodes/compile.el (compilation-message-face): Make it defcustom.
+
2006-04-02 Dan Nicolaescu <[email protected]>
* ibuf-macs.el (define-ibuffer-column): Add a new key:
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index b1f02ed2eb..2fa3ee0ff1 100644
--- a/lisp/progmodes/compile.el
+++ b/lisp/progmodes/compile.el
@@ -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.")