aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2022-04-22 15:17:15 +0200
committerLars Ingebrigtsen2022-04-22 15:17:15 +0200
commit16dfec3c4ccafb2ec7b9a428fb2730ca8f0202fd (patch)
treeb8e1716b31e9baf280f67bfa2feaf9208650bb92
parent93f87a3190f9efebe0e2db0cd5cfe5aeac6b64c3 (diff)
downloademacs-16dfec3c4ccafb2ec7b9a428fb2730ca8f0202fd.tar.gz
emacs-16dfec3c4ccafb2ec7b9a428fb2730ca8f0202fd.zip
Fix map-into doc string example
* lisp/emacs-lisp/map.el (map-into): Fix quote quoting in example.
-rw-r--r--lisp/emacs-lisp/map.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/map.el b/lisp/emacs-lisp/map.el
index dea5b34991a..c53f253f87f 100644
--- a/lisp/emacs-lisp/map.el
+++ b/lisp/emacs-lisp/map.el
@@ -540,7 +540,7 @@ TYPE is a list whose car is `hash-table' and cdr a list of
540keyword-args forwarded to `make-hash-table'. 540keyword-args forwarded to `make-hash-table'.
541 541
542Example: 542Example:
543 (map-into '((1 . 3)) '(hash-table :test eql))" 543 (map-into \\='((1 . 3)) \\='(hash-table :test eql))"
544 (map--into-hash map (cdr type))) 544 (map--into-hash map (cdr type)))
545 545
546(defun map--make-pcase-bindings (args) 546(defun map--make-pcase-bindings (args)