From: Stefan Kangas Date: Mon, 22 Nov 2021 11:12:25 +0000 (+0100) Subject: ; Fix typo X-Git-Tag: emacs-29.0.90~2852^2~108 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=487ddf466a58c5f558e44b4ab3b5912219445d89;p=emacs.git ; Fix typo * lisp/emacs-lisp/bytecomp.el (byte-compile--wide-docstring-p): Fix typo. --- diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index e1c7ab4904a..5dc03eac92b 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -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)))))