pike.git/
src/
builtin_functions.c
Branch:
Tag:
Non-build tags
All tags
No tags
2010-02-23
2010-02-23 14:37:22 by Henrik Grubbström (Grubba) <grubba@grubba.org>
36f105ad7d262def52617524037b4bf7a2c65ccb (
7
lines) (+
4
/-
3
)
[
Show
|
Annotate
]
Branch:
7.9
Fixed some typos.
Rev: src/builtin_functions.c:1.698
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: builtin_functions.c,v 1.
697
2010/02/23
13
:
16
:
38
grubba Exp $
+
|| $Id: builtin_functions.c,v 1.
698
2010/02/23
14
:
37
:
22
grubba Exp $
*/ #include "global.h"
1100:
Pike_sp[-1].u.integer = i; /* Note: Integers do not need to be freed. */ object_index_no_free(Pike_sp-1, o, inherit_no, Pike_sp-1);
-
if (Pike_sp[-1].type != T_
INTEGER
) {
+
if (Pike_sp[-1].type !=
PIKE_
T_
INT
) {
Pike_error("Unexepected value returned from index operator.\n"); } if (ch != Pike_sp[-1].u.integer) {
1109:
return; } }
-
pop_n_elems(
arg+1
);
+
pop_n_elems(
args+1
);
push_int(1); return; }