summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2006-04-02 20:21:11 +0000
committerRichard M. Stallman <rms@gnu.org>2006-04-02 20:21:11 +0000
commitf4beca066c67c4e592595ba120f68c70c2e6a88a (patch)
tree6138fc63712583e6ac9a7a28aafd5db919ee967d /lisp
parentf0b315896ca8aa8c0113753bb1b3e1965d2153b4 (diff)
downloademacs-f4beca066c67c4e592595ba120f68c70c2e6a88a.tar.gz
emacs-f4beca066c67c4e592595ba120f68c70c2e6a88a.tar.bz2
emacs-f4beca066c67c4e592595ba120f68c70c2e6a88a.zip
(compilation-message-face): Make it defcustom.
Diffstat (limited to 'lisp')
-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 a265db67369..998c2eb9427 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -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:
diff --git a/lisp/progmodes/compile.el b/lisp/progmodes/compile.el
index b1f02ed2ebf..2fa3ee0ff15 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.")