diff options
author | Nicolas Petton <nicolas@petton.fr> | 2015-04-25 16:56:19 +0200 |
---|---|---|
committer | Nicolas Petton <nicolas@petton.fr> | 2015-04-25 16:56:19 +0200 |
commit | 5e52b0a0767bff530956863afc62784a4b2e5777 (patch) | |
tree | a029b901568ef9bb36955966ea6592c9b3fc26d3 /lisp/emacs-lisp/map.el | |
parent | 40a8a12a26763addb0422105330deb278ce87012 (diff) | |
download | emacs-5e52b0a0767bff530956863afc62784a4b2e5777.tar.gz emacs-5e52b0a0767bff530956863afc62784a4b2e5777.tar.bz2 emacs-5e52b0a0767bff530956863afc62784a4b2e5777.zip |
* lisp/emacs-lisp/map.el (map--elt-list): Better docstring.
Diffstat (limited to 'lisp/emacs-lisp/map.el')
-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 b64b2bff768..3efab404896 100644 --- a/lisp/emacs-lisp/map.el +++ b/lisp/emacs-lisp/map.el @@ -254,7 +254,7 @@ form. map))) (defun map--elt-list (map key &optional default) - "Return the element of the list MAP at the index KEY. + "Lookup, in the list MAP, the value associated with KEY and return it. If KEY is not found, return DEFAULT which defaults to nil." (let ((pair (assoc key map))) (if pair |