emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[elpa] externals/cycle-quotes 7f26170 2/4: Fix some quoting problems in


From: Stefan Monnier
Subject: [elpa] externals/cycle-quotes 7f26170 2/4: Fix some quoting problems in doc strings
Date: Tue, 1 Dec 2020 15:36:55 -0500 (EST)

branch: externals/cycle-quotes
commit 7f261706dfc6d1df8a6987a3f1f4b20163b352d0
Author: Paul Eggert <eggert@cs.ucla.edu>
Commit: Paul Eggert <eggert@cs.ucla.edu>

    Fix some quoting problems in doc strings
    
    Most of these are minor issues involving, e.g., quoting `like this'
    instead of 'like this'.  A few involve escaping ` and ' with a
    preceding \= when the characters should not be turned into curved single
    quotes.
---
 cycle-quotes.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cycle-quotes.el b/cycle-quotes.el
index faac0cb..53de8ac 100644
--- a/cycle-quotes.el
+++ b/cycle-quotes.el
@@ -73,8 +73,8 @@ to be recomputed.")
 
 (defun cycle-quotes--fix-escapes (beg end escape-char unescape-char)
   "Fix character escapes between BEG and END.
-Instances of ESCAPE-CHAR will be escaped by `\', while instances
-where UNESCAPE-CHAR are escaped by `\' will have their escape
+Instances of ESCAPE-CHAR will be escaped by `\\', while instances
+where UNESCAPE-CHAR are escaped by `\\' will have their escape
 character removed."
   (let ((escape-string (string escape-char))
         (unescape-string (string unescape-char)))



reply via email to

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