diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2021-10-04 21:02:23 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2021-10-04 21:02:23 +0200 |
commit | 19444fb093b680c632797dbcade7c14f87d44966 (patch) | |
tree | 2115564ca87c2f0f117b920e8d1815210ac3ce41 | |
parent | 882a59408e64c4826904ff800b9da122280693fc (diff) | |
download | emacs-19444fb093b680c632797dbcade7c14f87d44966.tar.gz |
Fix syntax error in define-keymap doc string
* lisp/subr.el (define-keymap): Fix syntax error in (fn.
-rw-r--r-- | lisp/subr.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/subr.el b/lisp/subr.el index c3dbe8df800..e4819c4b2bd 100644 --- a/lisp/subr.el +++ b/lisp/subr.el @@ -6491,7 +6491,7 @@ KEY/DEFINITION pairs are as KEY and DEF in `define-key'. KEY can also be the special symbol `:menu', in which case DEFINITION should be a MENU form as accepted by `easy-menu-define'. -\n(fn [&key FULL PARENT SUPPRESS NAME PREFIX KEYMAP] [KEY DEFINITION] ...)" +\(fn (&key FULL PARENT SUPPRESS NAME PREFIX KEYMAP) &rest [KEY DEFINITION]...)" ;; Handle keywords. (let ((options nil)) (while (and definitions |