; Fix typo

* lisp/emacs-lisp/bytecomp.el (byte-compile--wide-docstring-p):
Fix typo.
This commit is contained in:
Stefan Kangas 2021-11-22 12:12:25 +01:00
parent 3db3d5a398
commit 487ddf466a

View file

@ -1677,7 +1677,7 @@ URLs."
;; For literal key sequence substitutions (e.g. "\\`C-h'"), just
;; remove the markup as `substitute-command-keys' would.
(replace-regexp-in-string
(rx "\\" (seq "`" (group (* (not "]"))) "'"))
(rx "\\" (seq "`" (group (* (not "'"))) "'"))
"\\1"
docstring)))))