]> code.delx.au - gnu-emacs/commitdiff
* lisp/emacs-lisp/map.el: Better docstring.
authorNicolas Petton <nicolas@petton.fr>
Fri, 24 Apr 2015 17:15:23 +0000 (19:15 +0200)
committerNicolas Petton <nicolas@petton.fr>
Fri, 24 Apr 2015 17:15:23 +0000 (19:15 +0200)
lisp/emacs-lisp/map.el

index 2c95f35569cd327ee9a8af5b69f30f1379d68dbd..621c37f2b76cec38395679547aff946a3062e82c 100644 (file)
@@ -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)