From e967f17e5d7f3a0b12ad5526a0025037fd69d876 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Fri, 21 Aug 2015 09:46:15 -0700 Subject: [PATCH] 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. --- lisp/info.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) -- 2.39.5