emacs-diffs
[Top][All Lists]
Advanced

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

emacs-28 7fb2789: Fix substitution of pretty quotes in code in easy-mmod


From: Lars Ingebrigtsen
Subject: emacs-28 7fb2789: Fix substitution of pretty quotes in code in easy-mmode
Date: Sun, 3 Oct 2021 05:35:37 -0400 (EDT)

branch: emacs-28
commit 7fb27895090f8f9fe6cfa6311a77ec2c794adc84
Author: Lars Ingebrigtsen <larsi@gnus.org>
Commit: Lars Ingebrigtsen <larsi@gnus.org>

    Fix substitution of pretty quotes in code in easy-mmode
    
    * lisp/emacs-lisp/easy-mmode.el (easy-mmode--arg-docstring): Adjust.
    (easy-mmode--mode-docstring): Avoid making quotes into pretty
    quotes in code (bug#50968).
---
 lisp/emacs-lisp/easy-mmode.el | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/lisp/emacs-lisp/easy-mmode.el b/lisp/emacs-lisp/easy-mmode.el
index d37bca2..f752861 100644
--- a/lisp/emacs-lisp/easy-mmode.el
+++ b/lisp/emacs-lisp/easy-mmode.el
@@ -93,7 +93,7 @@ Enable the mode if ARG is nil, omitted, or is a positive 
number.
 Disable the mode if ARG is a negative number.
 
 To check whether the minor mode is enabled in the current buffer,
-evaluate `%S'.
+evaluate `%s'.
 
 The mode's hook is called both when the mode is enabled and when
 it is disabled.")
@@ -109,7 +109,9 @@ it is disabled.")
              (docs-fc (bound-and-true-p emacs-lisp-docstring-fill-column))
              (fill-column (if (integerp docs-fc) docs-fc 65))
              (argdoc (format easy-mmode--arg-docstring mode-pretty-name
-                             getter))
+                             ;; Avoid having quotes turn into pretty quotes.
+                             (string-replace "'" "\\\\='"
+                                             (format "%S" getter))))
              (filled (if (fboundp 'fill-region)
                          (with-temp-buffer
                            (insert argdoc)



reply via email to

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