Fix minor-mode doc string quoting
* lisp/emacs-lisp/easy-mmode.el (easy-mmode--mode-docstring): Fix double quoting of things like (default-value 'electric-pair-mode) (bug#54746).
This commit is contained in:
parent
45621c0b79
commit
406da54bc6
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ it is disabled.")
|
|||
(if global "global " "")
|
||||
mode-pretty-name
|
||||
;; Avoid having quotes turn into pretty quotes.
|
||||
(string-replace "'" "\\\\='" (format "%S" getter)))))
|
||||
(string-replace "'" "\\='" (format "%S" getter)))))
|
||||
(let ((start (point)))
|
||||
(insert argdoc)
|
||||
(when (fboundp 'fill-region)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue