pike.git/
src/
builtin_functions.c
Branch:
Tag:
Non-build tags
All tags
No tags
1998-07-19
1998-07-19 22:49:08 by Henrik Grubbström (Grubba) <grubba@grubba.org>
c4d5f817f5a6aea8c3a99c0f1307167911c26629 (
7
lines) (+
4
/-
3
)
[
Show
|
Annotate
]
Branch:
7.9
Minor cosmetic change.
Rev: src/builtin_functions.c:1.117
4:
||| See the files COPYING and DISCLAIMER for more information. \*/ #include "global.h"
-
RCSID("$Id: builtin_functions.c,v 1.
116
1998/07/
17
06
:
19
:
50
neotron
Exp $");
+
RCSID("$Id: builtin_functions.c,v 1.
117
1998/07/
19
22
:
49
:
08
grubba
Exp $");
#include "interpret.h" #include "svalue.h" #include "pike_macros.h"
1058:
for(e=0;e<from->size;e++) { if(ITEM(from)[e].type != T_STRING)
-
error("Replace: from array not string
*
\n");
+
error("Replace: from array
is
not
array(
string
)
\n");
v[e].ind=ITEM(from)[e].u.string; } for(e=0;e<to->size;e++) { if(ITEM(to)[e].type != T_STRING)
-
error("Replace: to array not string
*
\n");
+
error("Replace: to array
is
not
array(
string
)
\n");
v[e].val=ITEM(to)[e].u.string; }