aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 9d2b4f718b5..06fd7ad2957 100644
--- a/lisp/emacs-lisp/map.el
+++ b/lisp/emacs-lisp/map.el
@@ -194,7 +194,7 @@ TYPE can be one of the following symbols: list or hash-table."
194 (pcase type 194 (pcase type
195 (`list (map-pairs map)) 195 (`list (map-pairs map))
196 (`hash-table (map--into-hash-table map)) 196 (`hash-table (map--into-hash-table map))
197 (t (error "Not a map type name: %s" type)))) 197 (t (error "Not a map type name: %S" type))))
198 198
199(defmacro map--dispatch (spec &rest args) 199(defmacro map--dispatch (spec &rest args)
200 "Evaluate one of the provided forms depending on the type of MAP. 200 "Evaluate one of the provided forms depending on the type of MAP.