summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2015-08-21 09:46:15 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2015-08-21 09:46:50 -0700
commite967f17e5d7f3a0b12ad5526a0025037fd69d876 (patch)
tree5ff3e95914e29a51bdaaa80ffd43e9c892ac5e34
parent3ea059852617b4b419080024852ed69b0ffa2620 (diff)
downloademacs-e967f17e5d7f3a0b12ad5526a0025037fd69d876.tar.gz
Respect text-quoting-style in (*Finder*) menus
* lisp/info.el (info--prettify-description): Treat description as a docstring, so that it's requoted as per text-quoting-style.
-rw-r--r--lisp/info.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/info.el b/lisp/info.el
index 1b02c3585b1..8a43a8182aa 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -3664,7 +3664,7 @@ Build a menu of the possible matches."
(defun info--prettify-description (desc)
(if (stringp desc)
(with-temp-buffer
- (insert desc)
+ (insert (substitute-command-keys desc))
(if (equal ?. (char-before))
(delete-char -1))
(goto-char (point-min))