pike.git/
lib/
master.pike.in
Branch:
Tag:
Non-build tags
All tags
No tags
2009-12-28
2009-12-28 14:16:30 by Martin Stjernholm <mast@lysator.liu.se>
ad356c7dabe53b7bd985219531725dc9fd046921 (
5
lines) (+
4
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
Try to call compile_warning in the current master.
Rev: lib/master.pike.in:1.469
6:
// Pike is distributed under GPL, LGPL and MPL. See the file COPYING // for more information. //
-
// $Id: master.pike.in,v 1.
468
2009/12/28 14:
15
:
21
mast Exp $
+
// $Id: master.pike.in,v 1.
469
2009/12/28 14:
16
:
30
mast Exp $
#pike __REAL_VERSION__ //#pragma strict_types
1488:
msg = trim_all_whites (msg); if (handler && handler->compile_warning) handler->compile_warning (file, 0, msg);
+
else if (master()->compile_warning)
+
master()->compile_warning (file, 0, msg);
else compile_warning (file, 0, msg); }