summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/map.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/map.el b/lisp/emacs-lisp/map.el
index 2c95f35569c..621c37f2b76 100644
--- a/lisp/emacs-lisp/map.el
+++ b/lisp/emacs-lisp/map.el
@@ -56,7 +56,8 @@ If MAP is a list, `equal' is used to lookup KEY."
(defmacro map-put (map key value)
"In MAP, associate KEY with VALUE and return MAP.
-If KEY is already present in MAP, replace its value with VALUE."
+If KEY is already present in MAP, replace the associated value
+with VALUE."
(declare (debug t))
`(progn
(map--dispatch (m ,map m)