2003-02-02
2003-02-02 00:31:16 by Martin Stjernholm <mast@lysator.liu.se>
-
7458da818c2ce18236946d36be82e4c2330af090
(7 lines)
(+4/-3)
[
Show
| Annotate
]
Branch: 7.9
Fixed do_gc call.
Rev: src/builtin_functions.c:1.467
2:
|| This file is part of Pike. For copyright information see COPYRIGHT.
|| Pike is distributed under GPL, LGPL and MPL. See the file COPYING
|| for more information.
- || $Id: builtin_functions.c,v 1.466 2003/02/01 15:43:50 mast Exp $
+ || $Id: builtin_functions.c,v 1.467 2003/02/02 00:31:16 mast Exp $
*/
#include "global.h"
- RCSID("$Id: builtin_functions.c,v 1.466 2003/02/01 15:43:50 mast Exp $");
+ RCSID("$Id: builtin_functions.c,v 1.467 2003/02/02 00:31:16 mast Exp $");
#include "interpret.h"
#include "svalue.h"
#include "pike_macros.h"
3791: Inside #if defined(PIKE_DEBUG)
#ifdef PIKE_DEBUG
do_debug(); /* Calls do_gc() since d_flag > 3. */
#else
- do_gc();
+ do_gc(NULL, 1);
#endif
d_flag=tmp;
pop_n_elems(args);