erc-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Erc-commit] [commit][master] erc.el (erc-notice-face): Fix this face fo


From: mwolson
Subject: [Erc-commit] [commit][master] erc.el (erc-notice-face): Fix this face for Emacs 21 users.
Date: Wed, 20 Feb 2008 16:00:16 -0500

commit 0e3f94486f4a503143057499c836fcdfc6b72945
Author: Michael W. Olson <address@hidden>
Date:   Wed Feb 20 14:53:14 2008 -0600

    erc.el (erc-notice-face): Fix this face for Emacs 21 users.

diff --git a/ChangeLog b/ChangeLog
index e6c5478..1a0b496 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2008-02-20  Michael Olson  <address@hidden>
+
+       * erc.el (erc-notice-face): Fix this face for Emacs 21 users.
+
 2008-02-04  Jeremy Maitin-Shepard  <address@hidden>
 
        * erc.el (erc-cmd-QUERY): Bind the value of `erc-auto-query' to
diff --git a/erc.el b/erc.el
index 9c8b0b3..79f743a 100644
--- a/erc.el
+++ b/erc.el
@@ -1169,7 +1169,8 @@ See the variable `erc-command-indicator'."
   :group 'erc-faces)
 
 (defface erc-notice-face
-  (if (featurep 'xemacs)
+  (if (or (featurep 'xemacs)
+         (< emacs-major-version 22))
       '((t (:bold t :foreground "blue")))
     '((((class color) (min-colors 88))
        (:bold t :foreground "SlateBlue"))




reply via email to

[Prev in Thread] Current Thread [Next in Thread]