From: Paul Eggert Date: Sun, 28 Jun 2015 20:24:20 +0000 (-0700) Subject: apropos-library quoting fix X-Git-Tag: emacs-25.0.90~1617 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f729a7c09eca37bc695db20b35e4dbeaa8813e48;p=emacs.git apropos-library quoting fix * lisp/apropos.el (apropos-library): Quote library consistently with the rest of the quoting used by apropos. --- 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 ")