pike.git/
lib/
master.pike.in
Branch:
Tag:
Non-build tags
All tags
No tags
2000-01-05
2000-01-05 13:32:55 by Martin Stjernholm <mast@lysator.liu.se>
bf3886bf80e51957f651642b575a29bd8ce489be (
8
lines) (+
3
/-
5
)
[
Show
|
Annotate
]
Branch:
7.9
Better check for the "Compilation failed." error thrown by compile().
Rev: lib/master.pike.in:1.92
1:
/* -*- Pike -*- *
-
* $Id: master.pike.in,v 1.
91
2000/01/05
06
:
08
:
56
mast Exp $
+
* $Id: master.pike.in,v 1.
92
2000/01/05
13
:
32
:
55
mast Exp $
* * Master-file for Pike. *
311:
if ( mixed e=catch { ret=compile_file(fname); } ) { programs[fname]=0;
-
if(arrayp(e) &&
-
sizeof(e)
==2
&&
-
arrayp(
e[
1
]
)
&&
-
sizeof(e[1])
==
sizeof(backtrace(
)
))
+
if(arrayp(e) && sizeof(e) && e[
0
] ==
"Compilation failed.\n"
)
e[1]=({}); throw(e); }