(check_cons_list): New function (contents commented out).
authorRichard M. Stallman <rms@gnu.org>
Sun, 25 Jul 2004 17:35:04 +0000 (17:35 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 25 Jul 2004 17:35:04 +0000 (17:35 +0000)
src/alloc.c

index 5c2a6fb..ece150f 100644 (file)
@@ -2395,6 +2395,17 @@ DEFUN ("cons", Fcons, Scons, 2, 2, 0,
   return val;
 }
 
+/* Get an error now if there's any junk in the cons free list.  */
+void
+check_cons_list ()
+{
+  struct Lisp_Cons *tail = cons_free_list;
+
+#if 0
+  while (tail)
+    tail = *(struct Lisp_Cons **)&tail->cdr;
+#endif
+}
 
 /* Make a list of 2, 3, 4 or 5 specified objects.  */