emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] Changes to emacs/lisp/font-lock.el


From: Richard M. Stallman
Subject: [Emacs-diffs] Changes to emacs/lisp/font-lock.el
Date: Mon, 31 Dec 2001 15:16:46 -0500

Index: emacs/lisp/font-lock.el
diff -c emacs/lisp/font-lock.el:1.187 emacs/lisp/font-lock.el:1.188
*** emacs/lisp/font-lock.el:1.187       Tue Dec 11 01:05:12 2001
--- emacs/lisp/font-lock.el     Mon Dec 31 15:16:46 2001
***************
*** 1788,1796 ****
            (when background
              (setq face-spec (cons ':background (cons background face-spec))))
            (when bold-p
!             (setq face-spec (append '(:bold t) face-spec)))
            (when italic-p
!             (setq face-spec (append '(:italic t) face-spec)))
            (when underline-p
              (setq face-spec (append '(:underline t) face-spec)))
            (custom-declare-face face (list (list t face-spec)) nil)))))))
--- 1788,1796 ----
            (when background
              (setq face-spec (cons ':background (cons background face-spec))))
            (when bold-p
!             (setq face-spec (append '(:weight bold) face-spec)))
            (when italic-p
!             (setq face-spec (append '(:slant italic) face-spec)))
            (when underline-p
              (setq face-spec (append '(:underline t) face-spec)))
            (custom-declare-face face (list (list t face-spec)) nil)))))))
***************
*** 1801,1822 ****
    '((((type tty pc) (class color) (background light)) (:foreground "red"))
      (((type tty pc) (class color) (background dark)) (:foreground "red1"))
      (((class grayscale) (background light))
!      (:foreground "DimGray" :bold t :italic t))
      (((class grayscale) (background dark))
!      (:foreground "LightGray" :bold t :italic t))
      (((class color) (background light)) (:foreground "Firebrick"))
      (((class color) (background dark)) (:foreground "chocolate1"))
!     (t (:bold t :italic t)))
    "Font Lock mode face used to highlight comments."
    :group 'font-lock-highlighting-faces)
  
  (defface font-lock-string-face
    '((((type tty) (class color)) (:foreground "green"))
!     (((class grayscale) (background light)) (:foreground "DimGray" :italic t))
!     (((class grayscale) (background dark)) (:foreground "LightGray" :italic 
t))
      (((class color) (background light)) (:foreground "RosyBrown"))
      (((class color) (background dark)) (:foreground "LightSalmon"))
!     (t (:italic t)))
    "Font Lock mode face used to highlight strings."
    :group 'font-lock-highlighting-faces)
  
--- 1801,1822 ----
    '((((type tty pc) (class color) (background light)) (:foreground "red"))
      (((type tty pc) (class color) (background dark)) (:foreground "red1"))
      (((class grayscale) (background light))
!      (:foreground "DimGray" :weight bold :slant italic))
      (((class grayscale) (background dark))
!      (:foreground "LightGray" :weight bold :slant italic))
      (((class color) (background light)) (:foreground "Firebrick"))
      (((class color) (background dark)) (:foreground "chocolate1"))
!     (t (:weight bold :slant italic)))
    "Font Lock mode face used to highlight comments."
    :group 'font-lock-highlighting-faces)
  
  (defface font-lock-string-face
    '((((type tty) (class color)) (:foreground "green"))
!     (((class grayscale) (background light)) (:foreground "DimGray" :slant 
italic))
!     (((class grayscale) (background dark)) (:foreground "LightGray" :slant 
italic))
      (((class color) (background light)) (:foreground "RosyBrown"))
      (((class color) (background dark)) (:foreground "LightSalmon"))
!     (t (:slant italic)))
    "Font Lock mode face used to highlight strings."
    :group 'font-lock-highlighting-faces)
  
***************
*** 1827,1847 ****
  
  (defface font-lock-keyword-face
    '((((type tty) (class color)) (:foreground "cyan" :weight bold))
!     (((class grayscale) (background light)) (:foreground "LightGray" :bold t))
!     (((class grayscale) (background dark)) (:foreground "DimGray" :bold t))
      (((class color) (background light)) (:foreground "Purple"))
      (((class color) (background dark)) (:foreground "Cyan"))
!     (t (:bold t)))
    "Font Lock mode face used to highlight keywords."
    :group 'font-lock-highlighting-faces)
  
  (defface font-lock-builtin-face
    '((((type tty) (class color)) (:foreground "blue" :weight light))
!     (((class grayscale) (background light)) (:foreground "LightGray" :bold t))
!     (((class grayscale) (background dark)) (:foreground "DimGray" :bold t))
      (((class color) (background light)) (:foreground "Orchid"))
      (((class color) (background dark)) (:foreground "LightSteelBlue"))
!     (t (:bold t)))
    "Font Lock mode face used to highlight builtins."
    :group 'font-lock-highlighting-faces)
  
--- 1827,1847 ----
  
  (defface font-lock-keyword-face
    '((((type tty) (class color)) (:foreground "cyan" :weight bold))
!     (((class grayscale) (background light)) (:foreground "LightGray" :weight 
bold))
!     (((class grayscale) (background dark)) (:foreground "DimGray" :weight 
bold))
      (((class color) (background light)) (:foreground "Purple"))
      (((class color) (background dark)) (:foreground "Cyan"))
!     (t (:weight bold)))
    "Font Lock mode face used to highlight keywords."
    :group 'font-lock-highlighting-faces)
  
  (defface font-lock-builtin-face
    '((((type tty) (class color)) (:foreground "blue" :weight light))
!     (((class grayscale) (background light)) (:foreground "LightGray" :weight 
bold))
!     (((class grayscale) (background dark)) (:foreground "DimGray" :weight 
bold))
      (((class color) (background light)) (:foreground "Orchid"))
      (((class color) (background dark)) (:foreground "LightSteelBlue"))
!     (t (:weight bold)))
    "Font Lock mode face used to highlight builtins."
    :group 'font-lock-highlighting-faces)
  
***************
*** 1849,1897 ****
    '((((type tty) (class color)) (:foreground "blue" :weight bold))
      (((class color) (background light)) (:foreground "Blue"))
      (((class color) (background dark)) (:foreground "LightSkyBlue"))
!     (t (:inverse-video t :bold t)))
    "Font Lock mode face used to highlight function names."
    :group 'font-lock-highlighting-faces)
  
  (defface font-lock-variable-name-face
    '((((type tty) (class color)) (:foreground "yellow" :weight light))
      (((class grayscale) (background light))
!      (:foreground "Gray90" :bold t :italic t))
      (((class grayscale) (background dark))
!      (:foreground "DimGray" :bold t :italic t))
      (((class color) (background light)) (:foreground "DarkGoldenrod"))
      (((class color) (background dark)) (:foreground "LightGoldenrod"))
!     (t (:bold t :italic t)))
    "Font Lock mode face used to highlight variable names."
    :group 'font-lock-highlighting-faces)
  
  (defface font-lock-type-face
    '((((type tty) (class color)) (:foreground "green"))
!     (((class grayscale) (background light)) (:foreground "Gray90" :bold t))
!     (((class grayscale) (background dark)) (:foreground "DimGray" :bold t))
      (((class color) (background light)) (:foreground "ForestGreen"))
      (((class color) (background dark)) (:foreground "PaleGreen"))
!     (t (:bold t :underline t)))
    "Font Lock mode face used to highlight type and classes."
    :group 'font-lock-highlighting-faces)
  
  (defface font-lock-constant-face
    '((((type tty) (class color)) (:foreground "magenta"))
      (((class grayscale) (background light))
!      (:foreground "LightGray" :bold t :underline t))
      (((class grayscale) (background dark))
!      (:foreground "Gray50" :bold t :underline t))
      (((class color) (background light)) (:foreground "CadetBlue"))
      (((class color) (background dark)) (:foreground "Aquamarine"))
!     (t (:bold t :underline t)))
    "Font Lock mode face used to highlight constants and labels."
    :group 'font-lock-highlighting-faces)
  
  (defface font-lock-warning-face
    '((((type tty) (class color)) (:foreground "red"))
!     (((class color) (background light)) (:foreground "Red" :bold t))
!     (((class color) (background dark)) (:foreground "Pink" :bold t))
!     (t (:inverse-video t :bold t)))
    "Font Lock mode face used to highlight warnings."
    :group 'font-lock-highlighting-faces)
  
--- 1849,1897 ----
    '((((type tty) (class color)) (:foreground "blue" :weight bold))
      (((class color) (background light)) (:foreground "Blue"))
      (((class color) (background dark)) (:foreground "LightSkyBlue"))
!     (t (:inverse-video t :weight bold)))
    "Font Lock mode face used to highlight function names."
    :group 'font-lock-highlighting-faces)
  
  (defface font-lock-variable-name-face
    '((((type tty) (class color)) (:foreground "yellow" :weight light))
      (((class grayscale) (background light))
!      (:foreground "Gray90" :weight bold :slant italic))
      (((class grayscale) (background dark))
!      (:foreground "DimGray" :weight bold :slant italic))
      (((class color) (background light)) (:foreground "DarkGoldenrod"))
      (((class color) (background dark)) (:foreground "LightGoldenrod"))
!     (t (:weight bold :slant italic)))
    "Font Lock mode face used to highlight variable names."
    :group 'font-lock-highlighting-faces)
  
  (defface font-lock-type-face
    '((((type tty) (class color)) (:foreground "green"))
!     (((class grayscale) (background light)) (:foreground "Gray90" :weight 
bold))
!     (((class grayscale) (background dark)) (:foreground "DimGray" :weight 
bold))
      (((class color) (background light)) (:foreground "ForestGreen"))
      (((class color) (background dark)) (:foreground "PaleGreen"))
!     (t (:weight bold :underline t)))
    "Font Lock mode face used to highlight type and classes."
    :group 'font-lock-highlighting-faces)
  
  (defface font-lock-constant-face
    '((((type tty) (class color)) (:foreground "magenta"))
      (((class grayscale) (background light))
!      (:foreground "LightGray" :weight bold :underline t))
      (((class grayscale) (background dark))
!      (:foreground "Gray50" :weight bold :underline t))
      (((class color) (background light)) (:foreground "CadetBlue"))
      (((class color) (background dark)) (:foreground "Aquamarine"))
!     (t (:weight bold :underline t)))
    "Font Lock mode face used to highlight constants and labels."
    :group 'font-lock-highlighting-faces)
  
  (defface font-lock-warning-face
    '((((type tty) (class color)) (:foreground "red"))
!     (((class color) (background light)) (:foreground "Red" :weight bold))
!     (((class color) (background dark)) (:foreground "Pink" :weight bold))
!     (t (:inverse-video t :weight bold)))
    "Font Lock mode face used to highlight warnings."
    :group 'font-lock-highlighting-faces)
  



reply via email to

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