From: Paul Eggert Date: Fri, 21 Aug 2015 16:46:15 +0000 (-0700) Subject: Respect text-quoting-style in (*Finder*) menus X-Git-Tag: emacs-25.0.90~1315 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e967f17e5d7f3a0b12ad5526a0025037fd69d876;p=emacs.git 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. --- 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))