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.
10
2000/
08
/
17
18
:
21
:
59
grubba
Exp $");
+
RCSID("$Id: parser.c,v 1.
11
2000/
12
/
01
08
:
10
:
18
hubbe
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:92:
#define PARSER_CHECK_STACK(X) #endif /* PIKE_DEBUG */ static void parser_magic_index(INT32 args) { struct svalue tmp; int i; if (args!=1)
-
error("Parser.`[]: Too few or too many arguments\n");
+
Pike_
error("Parser.`[]: Too few or too many arguments\n");
if (sp[-1].type!=T_STRING)
-
error("Parser.`[]: Illegal type of argument\n");
+
Pike_
error("Parser.`[]: Illegal type of argument\n");
for (i=0; i<(int)NELEM(submagic)-1; i++) if (sp[-1].u.string==submagic[i].ps) { #ifdef PIKE_DEBUG struct svalue *save_sp; #endif pop_stack(); #ifdef PIKE_DEBUG