1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-25 07:28:20 +00: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))))))