From 5e52b0a0767bff530956863afc62784a4b2e5777 Mon Sep 17 00:00:00 2001 From: Nicolas Petton Date: Sat, 25 Apr 2015 16:56:19 +0200 Subject: [PATCH] * lisp/emacs-lisp/map.el (map--elt-list): Better docstring. --- lisp/emacs-lisp/map.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5