diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-07-01 19:21:49 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-07-01 19:21:49 +0000 |
commit | 59e2fb968d7ad0c148e28656cd4e28adb557ac48 (patch) | |
tree | 14ccbaf407a7eede7ee6cddc66eb5d199b342212 /lisp/faces.el | |
parent | 60f3ff77d6e85e834ead2b8de6164ac2c9336b5c (diff) | |
download | emacs-59e2fb968d7ad0c148e28656cd4e28adb557ac48.tar.gz |
(describe-face): New function.
(make-face-x-resource-internal): Give special meanings
to font "names" `italic', `bold', and `bold-italic'.
Diffstat (limited to 'lisp/faces.el')
-rw-r--r-- | lisp/faces.el | 27 |
1 files changed, 25 insertions, 2 deletions
diff --git a/lisp/faces.el b/lisp/faces.el index 990886afd9f..8025a085543 100644 --- a/lisp/faces.el +++ b/lisp/faces.el @@ -383,8 +383,18 @@ If the face already exists, it is unmodified." ) (if fn (condition-case () - (set-face-font face fn frame) - (error (message "font `%s' not found for face `%s'" fn name)))) + (cond ((string= fn "italic") + (make-face-italic face)) + ((string= fn "bold") + (make-face-bold face)) + ((string= fn "bold-italic") + (make-face-bold-italic face)) + (t + (set-face-font face fn frame))) + (error + (if (member fn '("italic" "bold" "bold-italic")) + (message "no %s version found for face `%s'" fn name) + (message "font `%s' not found for face `%s'" fn name))))) (if fg (condition-case () (set-face-foreground face fg frame) @@ -886,6 +896,19 @@ selected frame." (while faces (copy-face (car faces) (car faces) frame disp-frame) (setq faces (cdr faces))))))) + +(defun describe-face (face) + "Display the properties of face FACE." + (interactive (list (read-face-name "Describe face: "))) + (with-output-to-temp-buffer "*Help*" + (princ "Properties of face `") + (princ (face-name face)) + (princ "':") (terpri) + (princ "Foreground: ") (princ (face-foreground face)) (terpri) + (princ "Background: ") (princ (face-background face)) (terpri) + (princ " Font: ") (princ (face-font face)) (terpri) + (princ "Underlined: ") (princ (if (face-underline-p face) "yes" "no")) (terpri) + (princ " Stipple: ") (princ (or (face-stipple face) "none")))) ;;; Make the standard faces. ;;; The C code knows the default and modeline faces as faces 0 and 1, |