From faa3d27b587f0b0895158ab67c5620a778099389 Mon Sep 17 00:00:00 2001 From: Juri Linkov Date: Sun, 14 Oct 2007 20:40:31 +0000 Subject: [PATCH] (describe-face): Allow handling a string as the face name. --- lisp/faces.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/faces.el b/lisp/faces.el index 2e4791358dd..c6f80f7f5b0 100644 --- a/lisp/faces.el +++ b/lisp/faces.el @@ -1285,6 +1285,7 @@ If FRAME is omitted or nil, use the selected frame." (save-excursion (set-buffer standard-output) (dolist (f face) + (if (stringp f) (setq f (intern f))) (insert "Face: " (symbol-name f)) (if (not (facep f)) (insert " undefined face.\n") -- 2.39.2