summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/shortdoc.el
diff options
context:
space:
mode:
authorStefan Kangas <stefan@marxist.se>2021-12-12 09:04:11 +0100
committerStefan Kangas <stefan@marxist.se>2021-12-12 09:04:47 +0100
commite29c904a0a3125e624d35f99cccb9cc0a47c47de (patch)
treef21278f830ad24fd2819e2c3281a6c339a66e501 /lisp/emacs-lisp/shortdoc.el
parente52739c32fb6c6611ed690b9daf856925d8a1cf5 (diff)
downloademacs-e29c904a0a3125e624d35f99cccb9cc0a47c47de.tar.gz
emacs-e29c904a0a3125e624d35f99cccb9cc0a47c47de.tar.bz2
emacs-e29c904a0a3125e624d35f99cccb9cc0a47c47de.zip
; * lisp/emacs-lisp/shortdoc.el (keymaps): Fix typo.
Diffstat (limited to 'lisp/emacs-lisp/shortdoc.el')
-rw-r--r--lisp/emacs-lisp/shortdoc.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/shortdoc.el b/lisp/emacs-lisp/shortdoc.el
index 5c51e257eb0..b9e000cc05f 100644
--- a/lisp/emacs-lisp/shortdoc.el
+++ b/lisp/emacs-lisp/shortdoc.el
@@ -1232,7 +1232,7 @@ There can be any number of :example/:result elements."
(define-keymap
:no-eval (define-keymap "C-c C-c" #'quit-buffer))
(defvar-keymap
- :no-eval (defvar-keymap my-keymap "C-c C-c" map #'quit-buffer))
+ :no-eval (defvar-keymap my-keymap "C-c C-c" #'quit-buffer))
"Setting keys"
(keymap-set
:no-eval (keymap-set map "C-c C-c" #'quit-buffer))