comparison src/fns.c @ 5472:e79980ee5efe

Merge with trunk.
author Mats Lidell <matsl@xemacs.org>
date Tue, 22 Feb 2011 22:56:02 +0100
parents 00e79bbbe48f f5a5501814f5
children ac37a5f7e5be
comparison
equal deleted inserted replaced
5471:00e79bbbe48f 5472:e79980ee5efe
10872 10872
10873 A non-nil value for the :stable keyword, not specified by Common Lisp, means 10873 A non-nil value for the :stable keyword, not specified by Common Lisp, means
10874 return the items in the order they appear in LIST1, followed by the 10874 return the items in the order they appear in LIST1, followed by the
10875 remaining items in the order they appear in LIST2. 10875 remaining items in the order they appear in LIST2.
10876 10876
10877 arguments: (LIST1 LIST2 &key (TEST #'eql) (KEY #'identity) TEST-NOT) 10877 arguments: (LIST1 LIST2 &key (TEST #'eql) (KEY #'identity) TEST-NOT STABLE)
10878 */ 10878 */
10879 (int nargs, Lisp_Object *args)) 10879 (int nargs, Lisp_Object *args))
10880 { 10880 {
10881 Lisp_Object liszt1 = args[0], liszt2 = args[1], elt = Qnil, tail = Qnil; 10881 Lisp_Object liszt1 = args[0], liszt2 = args[1], elt = Qnil, tail = Qnil;
10882 Lisp_Object result = Qnil, result_tail = Qnil, keyed = Qnil, ignore = Qnil; 10882 Lisp_Object result = Qnil, result_tail = Qnil, keyed = Qnil, ignore = Qnil;