diff options
| -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." | |||
| 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. |
| 59 | If KEY is already present in MAP, replace its value with VALUE." | 59 | If KEY is already present in MAP, replace the associated value |
| 60 | with 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) |