emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master e967f17: Respect text-quoting-style in (*Finder*) m


From: Paul Eggert
Subject: [Emacs-diffs] master e967f17: Respect text-quoting-style in (*Finder*) menus
Date: Fri, 21 Aug 2015 16:46:54 +0000

branch: master
commit e967f17e5d7f3a0b12ad5526a0025037fd69d876
Author: Paul Eggert <address@hidden>
Commit: Paul Eggert <address@hidden>

    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 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/lisp/info.el b/lisp/info.el
index 1b02c35..8a43a81 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))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]