]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/emacs-lisp/map.el (map-put): Fix redundancy in docstring.
authorTino Calancha <tino.calancha@gmail.com>
Mon, 17 Jul 2017 13:01:17 +0000 (22:01 +0900)
committerTino Calancha <tino.calancha@gmail.com>
Mon, 17 Jul 2017 13:01:17 +0000 (22:01 +0900)
lisp/emacs-lisp/map.el

index 31ba075c40f7239edc8e95c72ca6914b98cd447f..e098eef829472b5fb580067ee07b18ccbc7ae48a 100644 (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))