pike.git
/
src
/
program.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/program.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: program.c,v 1.
554
2004/
01
/
22
23
:
17
:
28
nilsson
Exp $
+
|| $Id: program.c,v 1.
555
2004/
03
/
02
11
:
51
:
14
grubba
Exp $
*/ #include "global.h"
-
RCSID("$Id: program.c,v 1.
554
2004/
01
/
22
23
:
17
:
28
nilsson
Exp $");
+
RCSID("$Id: program.c,v 1.
555
2004/
03
/
02
11
:
51
:
14
grubba
Exp $");
#include "program.h" #include "object.h" #include "dynamic_buffer.h" #include "pike_types.h" #include "stralloc.h" #include "las.h" #include "language.h" #include "lex.h" #include "pike_macros.h" #include "fsort.h"
pike.git/src/program.c:1649:
} if ((id > 0) && (id < PROG_DYNAMIC_ID_START)) { /* Reserved id. Attempt to load the proper dynamic module * to resolv the id. */ char *module = NULL; switch(id) { case PROG_PARSER_HTML_ID:
-
module = "Parser._parser";
+
module = "Parser._
___
parser";
break; case PROG_GMP_MPZ_ID:
-
module = "Gmp
.mpz
";
+
module = "
___
Gmp";
break; case PROG_MODULE_MIME_ID:
-
module = "___MIME";
+
module = "___
___
MIME";
break; default: if ((id >= 100) && (id <= 300)) {
-
module = "Image";
+
module = "
___
Image";
} else if ((id >= 1000) && (id <= 2000)) {
-
module = "GTK";
+
module = "
___
GTK";
} break; } if (module) { push_text(module); SAFE_APPLY_MASTER("resolv", 1); pop_stack(); /* Try again... */ for(p=first_program;p;p=p->next)