diff options
| author | Miles Bader | 2004-07-28 07:05:52 +0000 |
|---|---|---|
| committer | Miles Bader | 2004-07-28 07:05:52 +0000 |
| commit | 54685a78a73fcf2f53fd0e8a7a3c7478b8650f1b (patch) | |
| tree | 998cde32667cb156ef66ceda314d53b168370588 /src/alloc.c | |
| parent | 6bb4a8bf9aaa63141ad7c12ab6b6ba9939050178 (diff) | |
| parent | b687047c72d2d13ced9ce55d38193b24ec722773 (diff) | |
| download | emacs-54685a78a73fcf2f53fd0e8a7a3c7478b8650f1b.tar.gz emacs-54685a78a73fcf2f53fd0e8a7a3c7478b8650f1b.zip | |
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
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/alloc.c b/src/alloc.c index 0e3e78bbac2..567b8c7a925 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -2395,6 +2395,17 @@ DEFUN ("cons", Fcons, Scons, 2, 2, 0, | |||
| 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 | ||