diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-11-22 12:12:25 +0100 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-11-22 12:18:13 +0100 |
commit | 487ddf466a58c5f558e44b4ab3b5912219445d89 (patch) | |
tree | 22da3634bc96748e46bdfe0379dd16d48da8b85e /lisp/emacs-lisp | |
parent | 3db3d5a3981dad1ac42a5729c285b9adaba10f05 (diff) | |
download | emacs-487ddf466a58c5f558e44b4ab3b5912219445d89.tar.gz emacs-487ddf466a58c5f558e44b4ab3b5912219445d89.tar.bz2 emacs-487ddf466a58c5f558e44b4ab3b5912219445d89.zip |
; Fix typo
* lisp/emacs-lisp/bytecomp.el (byte-compile--wide-docstring-p):
Fix typo.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/bytecomp.el | 2 |
1 files changed, 1 insertions, 1 deletions
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))))) |