diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2005-05-23 00:05:40 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2005-05-23 00:05:40 +0000 |
commit | 868904eb92e91c792ec6d14b7e0d7542f7988175 (patch) | |
tree | d4b7214c9ac26f16b2c45eaa6b8ddd0eb1a2fe9b /lisp/emacs-lisp | |
parent | 3efc2cd768a4f9838d2a08fde9408b08cec1b0c6 (diff) | |
download | emacs-868904eb92e91c792ec6d14b7e0d7542f7988175.tar.gz emacs-868904eb92e91c792ec6d14b7e0d7542f7988175.tar.bz2 emacs-868904eb92e91c792ec6d14b7e0d7542f7988175.zip |
(acons, pairlis): Add docstring.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/cl.el | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/cl.el b/lisp/emacs-lisp/cl.el index 704d3f8dcd9..e7f736cfd72 100644 --- a/lisp/emacs-lisp/cl.el +++ b/lisp/emacs-lisp/cl.el @@ -565,8 +565,17 @@ Return a copy of TREE with all elements `eql' to OLD replaced by NEW. cl-tree (cons a d)))) (t cl-tree))) -(defun acons (a b c) (cons (cons a b) c)) -(defun pairlis (a b &optional c) (nconc (mapcar* 'cons a b) c)) +(defun acons (key value alist) + "Add KEY and VALUE to ALIST. +Return a new list with (cons KEY VALUE) as car and ALIST as cdr." + (cons (cons key value) alist)) + +(defun pairlis (keys values &optional alist) + "Make an alist from KEYS and VALUES. +Return a new alist composed by associating KEYS to corresponding VALUES; +the process stops as soon as KEYS or VALUES run out. +If ALIST is non-nil, the new pairs are prepended to it." + (nconc (mapcar* 'cons keys values) alist)) ;;; Miscellaneous. |