]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't make faces depend on window-system.
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 20 Jan 2003 09:29:23 +0000 (09:29 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 20 Jan 2003 09:29:23 +0000 (09:29 +0000)
lisp/ChangeLog
lisp/progmodes/cperl-mode.el

index fa675af844022bdf53ad0b708fbb23a289b6fd2b..66c44fb52e9871a4277346df373981cb78a1c9f0 100644 (file)
@@ -1,3 +1,7 @@
+2003-01-20  Vasily Korytov  <deskpot@myrealbox.com>  (tiny change)
+
+       * progmodes/cperl-mode.el: Don't make faces depend on window-system.
+
 2003-01-17  Francesco Potort\e,Al\e(B  <pot@gnu.org>
 
        * Version 21.3 released.
index 49b736606a29059f6592c60dee646299507e2cb0..f74ba8165681825bd042b974d56e8e23b524c868 100644 (file)
@@ -516,51 +516,49 @@ when syntaxifying a chunk of buffer."
                                   (repeat symbol)))))
   :group 'cperl-faces)
 
-(if window-system
-    (progn
-      (defvar cperl-dark-background
-       (cperl-choose-color "navy" "os2blue" "darkgreen"))
-      (defvar cperl-dark-foreground
-       (cperl-choose-color "orchid1" "orange"))
-
-      (defface cperl-nonoverridable-face
-       `((((class grayscale) (background light))
-          (:background "Gray90" :italic t :underline t))
-         (((class grayscale) (background dark))
-          (:foreground "Gray80" :italic t :underline t :bold t))
-         (((class color) (background light))
-          (:foreground "chartreuse3"))
-         (((class color) (background dark))
-          (:foreground ,cperl-dark-foreground))
-         (t (:bold t :underline t)))
-       "Font Lock mode face used to highlight array names."
-       :group 'cperl-faces)
-
-      (defface cperl-array-face
-       `((((class grayscale) (background light))
-          (:background "Gray90" :bold t))
-         (((class grayscale) (background dark))
-          (:foreground "Gray80" :bold t))
-         (((class color) (background light))
-          (:foreground "Blue" :background "lightyellow2" :bold t))
-         (((class color) (background dark))
-          (:foreground "yellow" :background ,cperl-dark-background :bold t))
-         (t (:bold t)))
-       "Font Lock mode face used to highlight array names."
-       :group 'cperl-faces)
-
-      (defface cperl-hash-face
-       `((((class grayscale) (background light))
-          (:background "Gray90" :bold t :italic t))
-         (((class grayscale) (background dark))
-          (:foreground "Gray80" :bold t :italic t))
-         (((class color) (background light))
-          (:foreground "Red" :background "lightyellow2" :bold t :italic t))
-         (((class color) (background dark))
-          (:foreground "Red" :background ,cperl-dark-background :bold t :italic t))
-         (t (:bold t :italic t)))
-       "Font Lock mode face used to highlight hash names."
-       :group 'cperl-faces)))
+(defvar cperl-dark-background
+  (cperl-choose-color "navy" "os2blue" "darkgreen"))
+(defvar cperl-dark-foreground
+  (cperl-choose-color "orchid1" "orange"))
+
+(defface cperl-nonoverridable-face
+    `((((class grayscale) (background light))
+       (:background "Gray90" :italic t :underline t))
+      (((class grayscale) (background dark))
+       (:foreground "Gray80" :italic t :underline t :bold t))
+      (((class color) (background light))
+       (:foreground "chartreuse3"))
+      (((class color) (background dark))
+       (:foreground ,cperl-dark-foreground))
+      (t (:bold t :underline t)))
+  "Font Lock mode face used to highlight array names."
+  :group 'cperl-faces)
+
+(defface cperl-array-face
+    `((((class grayscale) (background light))
+       (:background "Gray90" :bold t))
+      (((class grayscale) (background dark))
+       (:foreground "Gray80" :bold t))
+      (((class color) (background light))
+       (:foreground "Blue" :background "lightyellow2" :bold t))
+      (((class color) (background dark))
+       (:foreground "yellow" :background ,cperl-dark-background :bold t))
+      (t (:bold t)))
+  "Font Lock mode face used to highlight array names."
+  :group 'cperl-faces)
+
+(defface cperl-hash-face
+    `((((class grayscale) (background light))
+       (:background "Gray90" :bold t :italic t))
+      (((class grayscale) (background dark))
+       (:foreground "Gray80" :bold t :italic t))
+      (((class color) (background light))
+       (:foreground "Red" :background "lightyellow2" :bold t :italic t))
+      (((class color) (background dark))
+       (:foreground "Red" :background ,cperl-dark-background :bold t :italic t))
+      (t (:bold t :italic t)))
+  "Font Lock mode face used to highlight hash names."
+  :group 'cperl-faces)
 
 \f