aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Blandy1993-05-30 17:21:36 +0000
committerJim Blandy1993-05-30 17:21:36 +0000
commitd9d5950f41ae01c5ce20ed22cf41a4e0d1e2f4d5 (patch)
tree534e23ccc0a8f5220c05904d49e8ffb655282308
parent7bca68456279a8198304c97a47a75b484c4d701a (diff)
downloademacs-d9d5950f41ae01c5ce20ed22cf41a4e0d1e2f4d5.tar.gz
emacs-d9d5950f41ae01c5ce20ed22cf41a4e0d1e2f4d5.zip
* faces.el (x-resolve-font-name): Fix args to error; the format
string was changed, but not the arguments to be substituted.
-rw-r--r--lisp/faces.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/faces.el b/lisp/faces.el
index 4eb7db8015f..4b6d3812d2d 100644
--- a/lisp/faces.el
+++ b/lisp/faces.el
@@ -430,7 +430,7 @@ also the same size as FACE on FRAME."
430 (if face 430 (if face
431 (error "no fonts match `%S'." pattern) 431 (error "no fonts match `%S'." pattern)
432 (error "no fonts matching pattern are the same size as `%s'." 432 (error "no fonts matching pattern are the same size as `%s'."
433 pattern face))) 433 face)))
434 (car fonts)) 434 (car fonts))
435 (cdr (assq 'font (frame-parameters (selected-frame)))))) 435 (cdr (assq 'font (frame-parameters (selected-frame))))))
436 436