comparison lisp/faces.el @ 90192:173dee4e2611

Revision: miles@gnu.org--gnu-2005/emacs--unicode--0--patch-61 Merge from emacs--cvs-trunk--0 Patches applied: * emacs--cvs-trunk--0 (patch 353-357) - Update from CVS
author Miles Bader <miles@gnu.org>
date Thu, 09 Jun 2005 07:13:03 +0000
parents 01137c1fdbe9 bd94b75dbfe8
children a1b34dec1104
comparison
equal deleted inserted replaced
90191:c766b49f5bbd 90192:173dee4e2611
2083 "Basic face for highlighting trailing whitespace." 2083 "Basic face for highlighting trailing whitespace."
2084 :version "21.1" 2084 :version "21.1"
2085 :group 'whitespace ; like `show-trailing-whitespace' 2085 :group 'whitespace ; like `show-trailing-whitespace'
2086 :group 'basic-faces) 2086 :group 'basic-faces)
2087 2087
2088 (defface escape-glyph '((((background dark)) :foreground "cyan") 2088 (defface escape-glyph
2089 ;; See the comment in minibuffer-prompt for 2089 '((((background dark)) :foreground "pink2")
2090 ;; the reason not to use blue on MS-DOS. 2090 ;; See the comment in minibuffer-prompt for
2091 (((type pc)) :foreground "magenta") 2091 ;; the reason not to use blue on MS-DOS.
2092 (t :foreground "blue")) 2092 (((type pc)) :foreground "magenta")
2093 ;; red4 is too light -- rms.
2094 (t :foreground "blue"))
2093 "Face for characters displayed as ^-sequences or \-sequences." 2095 "Face for characters displayed as ^-sequences or \-sequences."
2094 :group 'basic-faces) 2096 :group 'basic-faces
2097 :version "22.1")
2098
2099 (defface no-break-space
2100 '((((class color) (min-colors 88)) :inherit escape-glyph :underline t)
2101 (((class color) (min-colors 8)) :background "magenta" :foreground )
2102 (t :inverse-video t))
2103 "Face for non-breaking space."
2104 :group 'basic-faces
2105 :version "22.1")
2106
2107 (defface shadow
2108 '((((background dark)) :foreground "grey70")
2109 (((background light)) :foreground "grey50"))
2110 "Basic face for shadowed text."
2111 :group 'basic-faces
2112 :version "22.1")
2113
2095 2114
2096 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 2115 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2097 ;;; Manipulating font names. 2116 ;;; Manipulating font names.
2098 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 2117 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2099 2118