From 9ed4c74e8bb6dc1da8ded4667b770de8f24b587d Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Sat, 4 Oct 2014 12:14:03 -0700 Subject: * apropos.el (apropos-symbols-internal): Avoid error with non-symbol properties. Fixes: debbugs:18337 --- lisp/apropos.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lisp/apropos.el') diff --git a/lisp/apropos.el b/lisp/apropos.el index 2cba65e9559..ac76ce26b41 100644 --- a/lisp/apropos.el +++ b/lisp/apropos.el @@ -718,7 +718,7 @@ the output includes key-bindings of commands." (setq doc (list (car properties))) (while (setq properties (cdr (cdr properties))) (setq doc (cons (car properties) doc))) - (mapconcat #'symbol-name (nreverse doc) " ")) + (mapconcat (lambda (p) (format "%s" p)) (nreverse doc) " ")) (when (get symbol 'widget-type) (apropos-documentation-property symbol 'widget-documentation t)) -- cgit v1.2.3