From f729a7c09eca37bc695db20b35e4dbeaa8813e48 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sun, 28 Jun 2015 13:24:20 -0700 Subject: [PATCH] apropos-library quoting fix * lisp/apropos.el (apropos-library): Quote library consistently with the rest of the quoting used by apropos. --- lisp/apropos.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/apropos.el b/lisp/apropos.el index 023ba4bb202..0a1bc7b8583 100644 --- a/lisp/apropos.el +++ b/lisp/apropos.el @@ -681,7 +681,8 @@ the output includes key-bindings of commands." (apropos-symbols-internal symbols apropos-do-all (concat - (format "Library `%s' provides: %s\nand requires: %s" + (format (substitute-command-keys + "Library `%s' provides: %s\nand requires: %s") file (mapconcat 'apropos-library-button (or provides '(nil)) " and ")