aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2015-06-28 13:24:20 -0700
committerPaul Eggert2015-06-28 13:24:57 -0700
commitf729a7c09eca37bc695db20b35e4dbeaa8813e48 (patch)
treea2c800fcce26cd6323567518a4a043a6394ab473
parent92a4e3ff2ff64c20f00b270c9340fbd2193bf7a5 (diff)
downloademacs-f729a7c09eca37bc695db20b35e4dbeaa8813e48.tar.gz
emacs-f729a7c09eca37bc695db20b35e4dbeaa8813e48.zip
apropos-library quoting fix
* lisp/apropos.el (apropos-library): Quote library consistently with the rest of the quoting used by apropos.
-rw-r--r--lisp/apropos.el3
1 files changed, 2 insertions, 1 deletions
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."
681 (apropos-symbols-internal 681 (apropos-symbols-internal
682 symbols apropos-do-all 682 symbols apropos-do-all
683 (concat 683 (concat
684 (format "Library `%s' provides: %s\nand requires: %s" 684 (format (substitute-command-keys
685 "Library `%s' provides: %s\nand requires: %s")
685 file 686 file
686 (mapconcat 'apropos-library-button 687 (mapconcat 'apropos-library-button
687 (or provides '(nil)) " and ") 688 (or provides '(nil)) " and ")