comparison src/alloc.c @ 89957:c08afac24467

Revision: miles@gnu.org--gnu-2004/emacs--unicode--0--patch-26 Merge from emacs--cvs-trunk--0 Patches applied: * miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-466 - miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-470 Update from CVS
author Miles Bader <miles@gnu.org>
date Wed, 28 Jul 2004 07:05:52 +0000
parents 97905c4f1a42 9fc5aae4053e
children 566253900690
comparison
equal deleted inserted replaced
89956:b9eee0a7bef5 89957:c08afac24467
2393 consing_since_gc += sizeof (struct Lisp_Cons); 2393 consing_since_gc += sizeof (struct Lisp_Cons);
2394 cons_cells_consed++; 2394 cons_cells_consed++;
2395 return val; 2395 return val;
2396 } 2396 }
2397 2397
2398 /* Get an error now if there's any junk in the cons free list. */
2399 void
2400 check_cons_list ()
2401 {
2402 struct Lisp_Cons *tail = cons_free_list;
2403
2404 #if 0
2405 while (tail)
2406 tail = *(struct Lisp_Cons **)&tail->cdr;
2407 #endif
2408 }
2398 2409
2399 /* Make a list of 2, 3, 4 or 5 specified objects. */ 2410 /* Make a list of 2, 3, 4 or 5 specified objects. */
2400 2411
2401 Lisp_Object 2412 Lisp_Object
2402 list2 (arg1, arg2) 2413 list2 (arg1, arg2)