diff options
author | Nicolas Petton <nicolas@petton.fr> | 2016-06-18 10:09:16 +0200 |
---|---|---|
committer | Nicolas Petton <nicolas@petton.fr> | 2016-06-18 10:10:00 +0200 |
commit | 87c9d8fcec183c8f4933e218c1895b6a0722b1e1 (patch) | |
tree | 4ac8dfe943d55a5c8bc1970936f2394221f1fa50 /lisp/emacs-lisp | |
parent | ead28454b89c7ba532ecc3f0f4beac68e943b94d (diff) | |
download | emacs-87c9d8fcec183c8f4933e218c1895b6a0722b1e1.tar.gz emacs-87c9d8fcec183c8f4933e218c1895b6a0722b1e1.tar.bz2 emacs-87c9d8fcec183c8f4933e218c1895b6a0722b1e1.zip |
* lisp/emacs-lisp/map.el (map-contains-key): Better docstring
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/map.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/map.el b/lisp/emacs-lisp/map.el index 7c4afb91304..735ab8f1759 100644 --- a/lisp/emacs-lisp/map.el +++ b/lisp/emacs-lisp/map.el @@ -260,7 +260,7 @@ MAP can be a list, hash-table or array." :hash-table (zerop (hash-table-count map)))) (defun map-contains-key (map key &optional testfn) - "Return non-nil if MAP contain KEY, nil otherwise. + "If MAP contain KEY return KEY, nil otherwise. Equality is defined by TESTFN if non-nil or by `equal' if nil. MAP can be a list, hash-table or array." |