1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-09 07:40:39 -08:00

* 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 If KEY is already present in MAP, replace the associated value
with VALUE. with VALUE.
When MAP is a list, test equality with TESTFN if non-nil, otherwise use `eql'. 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." MAP can be a list, hash-table or array."
`(setf (map-elt ,map ,key nil ,testfn) ,value)) `(setf (map-elt ,map ,key nil ,testfn) ,value))