1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-12 09:51:05 -07:00

* faces.el (x-resolve-font-name): Fix args to error; the format

string was changed, but not the arguments to be substituted.
This commit is contained in:
Jim Blandy 1993-05-30 17:21:36 +00:00
parent 7bca684562
commit d9d5950f41

View file

@ -430,7 +430,7 @@ also the same size as FACE on FRAME."
(if face
(error "no fonts match `%S'." pattern)
(error "no fonts matching pattern are the same size as `%s'."
pattern face)))
face)))
(car fonts))
(cdr (assq 'font (frame-parameters (selected-frame))))))