]> git.eshelyaron.com Git - emacs.git/commitdiff
(read-face-font): Include fontsets in the completion list.
authorKenichi Handa <handa@m17n.org>
Mon, 29 Dec 2003 07:50:17 +0000 (07:50 +0000)
committerKenichi Handa <handa@m17n.org>
Mon, 29 Dec 2003 07:50:17 +0000 (07:50 +0000)
lisp/faces.el

index d5a7aa6b4b565beb09ab52a1d58061c14a50c818..9a4aa7c83a6f91e28d671874c643283472549dec 100644 (file)
@@ -1071,7 +1071,8 @@ of a global face.  Value is the new attribute value."
 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)
-                    (mapcar 'list (x-list-fonts "*" nil frame)))))
+                    (mapcar 'list (append (fontset-list)
+                                          (x-list-fonts "*" nil frame))))))
 
 
 (defun read-all-face-attributes (face &optional frame)