]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix typo
authorStefan Kangas <stefan@marxist.se>
Mon, 22 Nov 2021 11:12:25 +0000 (12:12 +0100)
committerStefan Kangas <stefan@marxist.se>
Mon, 22 Nov 2021 11:18:13 +0000 (12:18 +0100)
* lisp/emacs-lisp/bytecomp.el (byte-compile--wide-docstring-p):
Fix typo.

lisp/emacs-lisp/bytecomp.el

index e1c7ab4904afc1cb0a40d47d9eeef201b4fbb048..5dc03eac92b53ff3f4822cb21650b6f836467094 100644 (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)))))