pike.git
/
src
/
lex.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/lex.c:1:
-
/*
\
-
||
|
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: lex.c,v 1.
107
2002/10/
08
23
:
31
:
24
nilsson Exp $
-
\
*/
-
/**/
+
/*
+
|| 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: lex.c,v 1.
108
2002/10/
11
01
:
39
:
33
nilsson Exp $
+
*/
#include "global.h"
-
RCSID("$Id: lex.c,v 1.
107
2002/10/
08
23
:
31
:
24
nilsson Exp $");
+
RCSID("$Id: lex.c,v 1.
108
2002/10/
11
01
:
39
:
33
nilsson Exp $");
#include "language.h" #include "array.h" #include "lex.h" #include "stralloc.h" #include "dynamic_buffer.h" #include "constants.h" #include "hashtable.h" #include "stuff.h" #include "pike_memory.h" #include "interpret.h"
pike.git/src/lex.c:440:
#undef SHIFT int yylex(YYSTYPE *yylval) { #if LEXDEBUG>8 fprintf(stderr, "YYLEX: Calling lexer at 0x%08lx\n", (long)lex.current_lexer); #endif /* LEXDEBUG > 8 */ return(lex.current_lexer(yylval)); }
-
-
-
+