pike.git/
lib/
master.pike.in
Branch:
Tag:
Non-build tags
All tags
No tags
2008-05-01
2008-05-01 10:39:56 by Martin Nilsson <mani@lysator.liu.se>
71f4feb28b020e48bfe2e07a48515dc9af87c1a1 (
5
lines) (+
3
/-
2
)
[
Show
|
Annotate
]
Branch:
7.9
Don't crash when an error handler object lacks compile_error
Rev: lib/master.pike.in:1.416
6:
// Pike is distributed under GPL, LGPL and MPL. See the file COPYING // for more information. //
-
// $Id: master.pike.in,v 1.
415
2008/
03
/
27
14
:
09
:
12
grubba
Exp $
+
// $Id: master.pike.in,v 1.
416
2008/
05
/
01
10
:
39
:
56
nilsson
Exp $
#pike __REAL_VERSION__ //#pragma strict_types
3170:
{ if (objectp(val) && val->compile_error) { val->compile_error(file, line, err);
-
} else {
+
} else
if (callablep(val))
{
val(file, line, err); } }