pike.git/
src/
interpret.c
Branch:
Tag:
Non-build tags
All tags
No tags
2006-03-17
2006-03-17 18:01:48 by Henrik Grubbström (Grubba) <grubba@grubba.org>
142e7a39eeb0e89f855a59921d245dff7b656bf5 (
7
lines) (+
4
/-
3
)
[
Show
|
Annotate
]
Branch:
7.9
Fixed typo.
Rev: src/interpret.c:1.377
2:
|| 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: interpret.c,v 1.
376
2006/03/17 18:01:
07
grubba Exp $
+
|| $Id: interpret.c,v 1.
377
2006/03/17 18:01:
48
grubba Exp $
*/ #include "global.h"
2401:
}else{ if (fun >= 0) { apply_low(o,fun,args);
-
} else if (
handle
_
errors
) {
-
Pike_error("Cannot call unknown function \"%s\".\n",
handle
_
errors
);
+
} else if (
fun
_
name
) {
+
Pike_error("Cannot call unknown function \"%s\".\n",
fun
_
name
);
} else { pop_n_elems(args); push_int(0);