From: Nicolas Petton Date: Fri, 24 Apr 2015 17:15:23 +0000 (+0200) Subject: * lisp/emacs-lisp/map.el: Better docstring. X-Git-Tag: emacs-25.0.90~1873^2~12 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=79d9757c2334364a78a2e40b75d8d4e96161a911;p=emacs.git * lisp/emacs-lisp/map.el: Better docstring. --- 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)