summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorTino Calancha <tino.calancha@gmail.com>2017-07-17 22:01:17 +0900
committerTino Calancha <tino.calancha@gmail.com>2017-07-17 22:01:17 +0900
commit5e2ae74df54d4090c591c79ab13e7713c6654b9c (patch)
treeffd80a784a96fbe07e54610c0630b11b70df6d79 /lisp/emacs-lisp
parent76e1f7d00fbff7bf8183ba85db2f67a11aa2d5ce (diff)
downloademacs-5e2ae74df54d4090c591c79ab13e7713c6654b9c.tar.gz
emacs-5e2ae74df54d4090c591c79ab13e7713c6654b9c.tar.bz2
emacs-5e2ae74df54d4090c591c79ab13e7713c6654b9c.zip
* lisp/emacs-lisp/map.el (map-put): Fix redundancy in docstring.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/map.el2
1 files changed, 0 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/map.el b/lisp/emacs-lisp/map.el
index 31ba075c40f..e098eef8294 100644
--- a/lisp/emacs-lisp/map.el
+++ b/lisp/emacs-lisp/map.el
@@ -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))