>From 9a3196624d3a24beb3a0625e8a2a74751368c112 Mon Sep 17 00:00:00 2001 From: Alexander Gramiak Date: Fri, 16 Jun 2017 15:37:47 -0600 Subject: [PATCH 1/2] Properly show faces in describe-symbol (Bug#24543) * lisp/faces.el (describe-face): Return (buffer-string). --- lisp/faces.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/faces.el b/lisp/faces.el index 9a8a1344ca..dabb7c3e7e 100644 --- a/lisp/faces.el +++ b/lisp/faces.el @@ -1447,7 +1447,7 @@ describe-face (setq face (list face))) (with-help-window (help-buffer) (with-current-buffer standard-output - (dolist (f face) + (dolist (f face (buffer-string)) (if (stringp f) (setq f (intern f))) ;; We may get called for anonymous faces (i.e., faces ;; expressed using prop-value plists). Those can't be -- 2.11.0