]> git.eshelyaron.com Git - emacs.git/commitdiff
(font-lock-negation-char-face): Default to "off".
authorKim F. Storm <storm@cua.dk>
Thu, 12 May 2005 08:57:17 +0000 (08:57 +0000)
committerKim F. Storm <storm@cua.dk>
Thu, 12 May 2005 08:57:17 +0000 (08:57 +0000)
lisp/font-lock.el

index f1199d1e14e7064a5dbeb2f88ec8fc959729a26b..1657400fe77e722f71f215d902f5725c5ee4041c 100644 (file)
@@ -1798,13 +1798,8 @@ Sets various variables using `font-lock-defaults' (or, if nil, using
   "Font Lock mode face used to highlight warnings."
   :group 'font-lock-highlighting-faces)
 
-;; Matches font-lock-builtin-face, because that is used for #ifndef and
-;; font-lock-keyword-face, which alas make-mode uses for ifndef
 (defface font-lock-negation-char-face
-  '((((class color) (min-colors 88) (background light)) (:foreground "VioletRed" :weight bold))
-    (((class color) (min-colors 88) (background dark)) (:foreground "MediumOrchid1" :weight bold))
-    (((class color) (min-colors 8)) (:foreground "red" :weight bold))
-    (t (:inverse-video t :weight bold)))
+  '((t nil))
   "Font Lock mode face used to highlight easy to overlook negation."
   :group 'font-lock-highlighting-faces)