diff options
author | Nicolas Petton <nicolas@petton.fr> | 2015-04-24 19:15:23 +0200 |
---|---|---|
committer | Nicolas Petton <nicolas@petton.fr> | 2015-04-24 19:15:23 +0200 |
commit | 79d9757c2334364a78a2e40b75d8d4e96161a911 (patch) | |
tree | 6fe1baef3d50625bf8b26f286d02f38c1c3163bc /lisp/emacs-lisp/map.el | |
parent | f37e265ea992f5799f1bf30a03509444c976df1d (diff) | |
download | emacs-79d9757c2334364a78a2e40b75d8d4e96161a911.tar.gz emacs-79d9757c2334364a78a2e40b75d8d4e96161a911.tar.bz2 emacs-79d9757c2334364a78a2e40b75d8d4e96161a911.zip |
* lisp/emacs-lisp/map.el: Better docstring.
Diffstat (limited to 'lisp/emacs-lisp/map.el')
-rw-r--r-- | lisp/emacs-lisp/map.el | 3 |
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) |