pike.git/
src/
builtin.cmod
Branch:
Tag:
Non-build tags
All tags
No tags
2014-10-17
2014-10-17 19:40:45 by Arne Goedeke <el@laramies.com>
5d40798e49921c2da7a3b11e3d9e34fa6ed9a22c (
6
lines) (+
2
/-
4
)
[
Show
|
Annotate
]
Branch:
8.0
String.Buffer: completed the removal of addat
3126:
*! @note *! Pike 7.8 and earlier did not support adding @[String.Buffer]s *! directly.
-
*!
-
*! @seealso
-
*! @[addat()]
+
*/ PIKEFUN int add( string|Buffer ... arg1 ) rawtype tFuncV(tNone, tOr(tString, tObjIs_BUFFER), tIntPos);
3145:
a = Pike_sp[j-args].u.string; else if ((TYPEOF(Pike_sp[j-args]) != PIKE_T_OBJECT) || (Pike_sp[j-args].u.object->prog != Buffer_program))
-
SIMPLE_BAD_ARG_ERROR("
addat
", j+1, "string|String.Buffer");
+
SIMPLE_BAD_ARG_ERROR("
add
", j+1, "string|String.Buffer");
else { a = OBJ2_BUFFER(Pike_sp[j-args].u.object)->str.s; if (!a) continue;