pike.git
/
src
/
modules
/
Parser
/
parser.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/modules/Parser/parser.c:1:
#include "global.h" #include "stralloc.h" #include "global.h"
-
RCSID("$Id: parser.c,v 1.
13
2002/
05
/
11
00
:
24
:
25
nilsson
Exp $");
+
RCSID("$Id: parser.c,v 1.
14
2002/
08
/
15
14
:
50
:
26
marcus
Exp $");
#include "pike_macros.h" #include "interpret.h" #include "program.h" #include "program_id.h" #include "object.h" #include "operators.h" #include "parser.h" /* must be included last */
pike.git/src/modules/Parser/parser.c:79:
#undef PARSER_SUBMODMAG #define PARSER_SUBMODULE(a,b,c) #define PARSER_SUBMODMAG(name,init,exit) { name,init,exit,NULL,NULL }, #include "initstuff.h" { 0,0,0,0,0 } }; #ifdef PIKE_DEBUG #define PARSER_CHECK_STACK(X) do { \ if (save_sp != sp) { \
-
fatal("%s:%d: %ld droppings on stack! previous init: %s\n", \
+
Pike_
fatal("%s:%d: %ld droppings on stack! previous init: %s\n", \
__FILE__, __LINE__, \ PTRDIFF_T_TO_LONG(sp - save_sp), X); \ } \ } while(0) #else #define PARSER_CHECK_STACK(X) #endif /* PIKE_DEBUG */ static void parser_magic_index(INT32 args)