]> git.eshelyaron.com Git - emacs.git/commitdiff
(fixed, excerpt): Define with defface. No longer
authorRichard M. Stallman <rms@gnu.org>
Mon, 21 Jul 1997 19:06:57 +0000 (19:06 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 21 Jul 1997 19:06:57 +0000 (19:06 +0000)
queries X server to find a "fixed" font; that was too slow and
didn't work for everyone.

lisp/enriched.el

index 10bbb23b4f2288f0116ccbeaba34b84621939c22..fdae2ac8303805b22e319ef561df67036c880ae1 100644 (file)
 ;;; Set up faces & display table
 ;;;
 
-;; A slight cheat - all emacs's faces are fixed-width.  
-;; The idea is just to pick one that looks different from the default.
-(if (internal-find-face 'fixed)
-    nil
-  (make-face 'fixed)
-  (if window-system
-      (set-face-font 'fixed
-                    (car (or (x-list-fonts "*fixed-medium*" 
-                                           'default (selected-frame))
-                             (x-list-fonts "*fixed*" 
-                                           'default (selected-frame)))))))
-                             
-(if (internal-find-face 'excerpt)
-    nil
-  (make-face 'excerpt)
-  (if window-system
-      (make-face-italic 'excerpt nil t)))
+;; Emacs doesn't have a "fixed" face by default, since all faces currently
+;; have to be fixed-width.  So we just pick one that looks different from the
+;; default.
+(defface fixed
+  '((t (:bold t)))
+  "Face used for text that must be shown in fixed width.
+Currently, emacs can only display fixed-width fonts, but this may change.
+This face is used for text specifically marked as fixed-width, for example
+in text/enriched files."
+  :group 'enriched)
+
+(defface excerpt
+  '((t (:italic t)))
+  "Face used for text that is an excerpt from another document.
+This is used in enriched-mode for text explicitly marked as an excerpt."
+  :group 'enriched)
 
 (defconst enriched-display-table (or (copy-sequence standard-display-table)
                                     (make-display-table)))