* lisp/emacs-lisp/map.el (map-put): Fix redundancy in docstring.

This commit is contained in:
Tino Calancha 2017-07-17 22:01:17 +09:00
parent 76e1f7d00f
commit 5e2ae74df5

View file

@ -130,8 +130,6 @@ MAP can be a list, hash-table or array."
If KEY is already present in MAP, replace the associated value
with VALUE.
When MAP is a list, test equality with TESTFN if non-nil, otherwise use `eql'.
TESTFN, if non-nil, means use its function definition instead of
`eql'.
MAP can be a list, hash-table or array."
`(setf (map-elt ,map ,key nil ,testfn) ,value))