comparison lisp/x-faces.el @ 2703:2f2d12f4f93a

[xemacs-hg @ 2005-03-31 11:28:41 by aidan] Emacs -> XEmacs as X resource app class in warnings about lack of bold, italic
author aidan
date Thu, 31 Mar 2005 11:28:44 +0000
parents 491f8cf78a9c
children ad2f4ae9895b
comparison
equal deleted inserted replaced
2702:b64583b59616 2703:2f2d12f4f93a
37 ;; This file does the magic to parse X font names, and make sure that the 37 ;; This file does the magic to parse X font names, and make sure that the
38 ;; default and modeline attributes of new frames are specified enough. 38 ;; default and modeline attributes of new frames are specified enough.
39 39
40 ;; The resource-manager syntax for faces is 40 ;; The resource-manager syntax for faces is
41 41
42 ;; Emacs.bold.attributeFont: font-name 42 ;; XEmacs.bold.attributeFont: font-name
43 ;; Emacs.bold.attributeForeground: fg 43 ;; XEmacs.bold.attributeForeground: fg
44 ;; Emacs.bold.attributeBackground: bg 44 ;; XEmacs.bold.attributeBackground: bg
45 ;; Emacs.bold.attributeBackgroundPixmap: file 45 ;; XEmacs.bold.attributeBackgroundPixmap: file
46 ;; Emacs.bold.attributeUnderline: true/false 46 ;; XEmacs.bold.attributeUnderline: true/false
47 ;; Emacs.bold.attributeStrikethru: true/false 47 ;; XEmacs.bold.attributeStrikethru: true/false
48 48
49 ;; You can specify the properties of a face on a per-frame basis. For 49 ;; You can specify the properties of a face on a per-frame basis. For
50 ;; example, to have the "isearch" face use a red foreground on frames 50 ;; example, to have the "isearch" face use a red foreground on frames
51 ;; named "emacs" (the default) but use a blue foreground on frames that 51 ;; named "XEmacs" (the default) but use a blue foreground on frames that
52 ;; you create named "debugger", you could do 52 ;; you create named "debugger", you could do
53 53
54 ;; Emacs*emacs.isearch.attributeForeground: red 54 ;; XEmacs*XEmacs.isearch.attributeForeground: red
55 ;; Emacs*debugger.isearch.attributeForeground: blue 55 ;; XEmacs*debugger.isearch.attributeForeground: blue
56 56
57 ;; Generally things that make faces won't set any of the face attributes if 57 ;; Generally things that make faces won't set any of the face attributes if
58 ;; you have already given them values via the resource database. You can 58 ;; you have already given them values via the resource database. You can
59 ;; also change this stuff from your .emacs file, by using the functions 59 ;; also change this stuff from your .emacs file, by using the functions
60 ;; set-face-foreground, set-face-font, etc. See the code in this file, and 60 ;; set-face-foreground, set-face-font, etc. See the code in this file, and