From d9d5950f41ae01c5ce20ed22cf41a4e0d1e2f4d5 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Sun, 30 May 1993 17:21:36 +0000 Subject: [PATCH] * faces.el (x-resolve-font-name): Fix args to error; the format string was changed, but not the arguments to be substituted. --- lisp/faces.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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." (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))))))