aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Petton2015-04-24 19:15:23 +0200
committerNicolas Petton2015-04-24 19:15:23 +0200
commit79d9757c2334364a78a2e40b75d8d4e96161a911 (patch)
tree6fe1baef3d50625bf8b26f286d02f38c1c3163bc
parentf37e265ea992f5799f1bf30a03509444c976df1d (diff)
downloademacs-79d9757c2334364a78a2e40b75d8d4e96161a911.tar.gz
emacs-79d9757c2334364a78a2e40b75d8d4e96161a911.zip
* lisp/emacs-lisp/map.el: Better docstring.
-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."
56 56
57(defmacro map-put (map key value) 57(defmacro map-put (map key value)
58 "In MAP, associate KEY with VALUE and return MAP. 58 "In MAP, associate KEY with VALUE and return MAP.
59If KEY is already present in MAP, replace its value with VALUE." 59If KEY is already present in MAP, replace the associated value
60with VALUE."
60 (declare (debug t)) 61 (declare (debug t))
61 `(progn 62 `(progn
62 (map--dispatch (m ,map m) 63 (map--dispatch (m ,map m)