pike.git/
lib/
master.pike.in
Branch:
Tag:
Non-build tags
All tags
No tags
2006-06-08
2006-06-08 11:37:01 by Martin Stjernholm <mast@lysator.liu.se>
da22f1d980c0f4164f911af13512a8920c3d62e0 (
7
lines) (+
4
/-
3
)
[
Show
|
Annotate
]
Branch:
7.9
Fixed spelling.
Rev: lib/master.pike.in:1.387
6:
// Pike is distributed under GPL, LGPL and MPL. See the file COPYING // for more information. //
-
// $Id: master.pike.in,v 1.
386
2006/
04
/
22
13
:
48
:
08
grubba
Exp $
+
// $Id: master.pike.in,v 1.
387
2006/
06
/
08
11
:
37
:
01
mast
Exp $
#pike __REAL_VERSION__ //#pragma strict_types
2227:
void|object current_handler) { mixed res = resolv(identifier, current_file, current_handler);
-
if(zero_type(res)) error("Could not
resolv
%s.\n", identifier);
+
if(zero_type(res)) error("Could not
resolve
%s.\n", identifier);
return res; }
2368:
static mixed main_resolv(string sym, CompatResolver|void resolver) { mixed v = (resolver||this)->resolv(sym); if(!v)
-
error("Could not
resolv
%s. "
+
error("Could not
resolve
%s. "
"(Perhaps the installed pike tree has been moved.)\n", sym); return v; };