From: Stefan Kangas Date: Sat, 2 Sep 2023 00:21:54 +0000 (+0200) Subject: * lisp/help.el (substitute-quotes): Improve docstring. X-Git-Tag: emacs-29.1.90~156 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=57760f585e2e7f935df18989009fde0a2ca7d01e;p=emacs.git * lisp/help.el (substitute-quotes): Improve docstring. --- diff --git a/lisp/help.el b/lisp/help.el index 7902a5c5b14..b384c476eb3 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -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)))