2003-11-14
2003-11-14 10:13:39 by Martin Stjernholm <mast@lysator.liu.se>
-
143d8820a3bc3bc35e6be7686b006a10a8fc90dd
(8 lines)
(+4/-4)
[
Show
| Annotate
]
Branch: 7.9
(init|exit)_lex are now (init|exit)_opcodes.
Rev: src/builtin_functions.c:1.519
Rev: src/main.c:1.185
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.518 2003/11/09 23:59:14 mast Exp $
+ || $Id: builtin_functions.c,v 1.519 2003/11/14 10:13:39 mast Exp $
*/
#include "global.h"
- RCSID("$Id: builtin_functions.c,v 1.518 2003/11/09 23:59:14 mast Exp $");
+ RCSID("$Id: builtin_functions.c,v 1.519 2003/11/14 10:13:39 mast Exp $");
#include "interpret.h"
#include "svalue.h"
#include "pike_macros.h"
2186: Inside #if defined(PIKE_DEBUG)
#ifdef PIKE_DEBUG
{
/* This will allow -p to work with _exit -Hubbe */
- extern void exit_lex(void);
- exit_lex();
+ exit_opcodes();
}
#endif