# HG changeset patch # User Miles Bader # Date 967341866 0 # Node ID 39d437913f44d0bd783fd62f209c401f3c53e27c # Parent 28b5eff78c333a96125eeea279ad18dc953770f2 (read-face-font, read-face-and-attribute): Tweak prompts. diff -r 28b5eff78c33 -r 39d437913f44 lisp/faces.el --- a/lisp/faces.el Sun Aug 27 02:04:17 2000 +0000 +++ b/lisp/faces.el Sun Aug 27 02:04:26 2000 +0000 @@ -920,7 +920,7 @@ "Read the name of a font for FACE on FRAME. If optional argument FRAME Is nil or omitted, use the selected frame." (let ((completion-ignore-case t)) - (completing-read (format "Set font attributes of face %s from font: " face) + (completing-read (format "Set font attributes of face `%s' from font: " face) (mapcar 'list (x-list-fonts "*" nil frame))))) @@ -952,7 +952,7 @@ Value is a list (FACE NEW-VALUE) where FACE is the face read (a symbol), and NEW-VALUE is value read." (cond ((eq attribute :font) - (let* ((prompt (format "Set font-related attributes of face ")) + (let* ((prompt "Set font-related attributes of face") (face (read-face-name prompt)) (font (read-face-font face frame))) (list face font)))