From: Nicolas Petton Date: Sat, 25 Apr 2015 14:56:19 +0000 (+0200) Subject: * lisp/emacs-lisp/map.el (map--elt-list): Better docstring. X-Git-Tag: emacs-25.0.90~1873^2~7 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5e52b0a0767bff530956863afc62784a4b2e5777;p=emacs.git * lisp/emacs-lisp/map.el (map--elt-list): Better docstring. --- 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