]> git.eshelyaron.com Git - emacs.git/commitdiff
(acons, pairlis): Add docstring.
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 23 May 2005 00:05:40 +0000 (00:05 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 23 May 2005 00:05:40 +0000 (00:05 +0000)
lisp/emacs-lisp/cl.el

index 704d3f8dcd9ff3ccffafededf2f0109d290d0980..e7f736cfd72a4775b445b7588618d6ea24f285cb 100644 (file)
@@ -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.