]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/help.el (substitute-quotes): Improve docstring.
authorStefan Kangas <stefankangas@gmail.com>
Sat, 2 Sep 2023 00:21:54 +0000 (02:21 +0200)
committerStefan Kangas <stefankangas@gmail.com>
Sat, 2 Sep 2023 00:21:54 +0000 (02:21 +0200)
lisp/help.el

index 7902a5c5b145403acbf19fe537501af306ea079d..b384c476eb3da1f2fc0987f1e73b466e54b7ec9e 100644 (file)
@@ -1449,10 +1449,11 @@ Otherwise, return a new string."
         (buffer-string)))))
 
 (defun substitute-quotes (string)
-  "Substitute quote characters for display.
+  "Substitute quote characters in STRING for display.
 Each grave accent \\=` is replaced by left quote, and each
-apostrophe \\=' is replaced by right quote.  Left and right quote
-characters are specified by `text-quoting-style'."
+apostrophe \\=' is replaced by right quote.  Which left and right
+quote characters to use is determined by the variable
+`text-quoting-style'."
   (cond ((eq (text-quoting-style) 'curve)
          (string-replace "`" "‘"
                          (string-replace "'" "’" string)))