summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1998-08-11 11:15:58 +0000
committerRichard M. Stallman <rms@gnu.org>1998-08-11 11:15:58 +0000
commit8b19a0d44757c0bea522459209f50e2b7f21f6e7 (patch)
treed16b1b58d13759437fb836f6ef72fa43062c3f82
parent24a1a8b5db2c9b8f0291e2698376b23738e48e3c (diff)
downloademacs-8b19a0d44757c0bea522459209f50e2b7f21f6e7.tar.gz
(list-faces-display): Call print-help-return-message.
(describe-face): Likewise.
-rw-r--r--lisp/faces.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/faces.el b/lisp/faces.el
index e4a10a115e1..4a7d951aeac 100644
--- a/lisp/faces.el
+++ b/lisp/faces.el
@@ -1138,7 +1138,8 @@ selected frame."
(while (not (eobp))
(insert " ")
(forward-line 1))))
- (goto-char (point-min))))
+ (goto-char (point-min)))
+ (print-help-return-message))
;; If the *Faces* buffer appears in a different frame,
;; copy all the face definitions from FRAME,
;; so that the display will reflect the frame that was selected.
@@ -1168,7 +1169,8 @@ selected frame."
(let ((doc (face-documentation face)))
(if doc
(princ doc)
- (princ "not documented as a face.")))))
+ (princ "not documented as a face.")))
+ (print-help-return-message)))
;;; Setting a face based on a SPEC.