From 2c5335822bbbc0589ebe2a1815a295e6df2317c7 Mon Sep 17 00:00:00 2001 From: hunt Date: Tue, 11 Jul 2006 20:38:35 +0000 Subject: *** empty log message *** --- tapset/string.stp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tapset/string.stp') diff --git a/tapset/string.stp b/tapset/string.stp index a4cff3e4..28f8e2dc 100644 --- a/tapset/string.stp +++ b/tapset/string.stp @@ -55,12 +55,12 @@ function isinstr:long(s1:string,s2:string) %{ /* pure */ */ function text_str:string(input:string) %{ /* pure */ - _stp_text_str(THIS->__retvalue, THIS->input, 0, 0); + _stp_text_str(THIS->__retvalue, THIS->input, 0, 0, 0); %} function text_strn:string(input:string, len:long, quoted:long) %{ /* pure */ - _stp_text_str(THIS->__retvalue, THIS->input, THIS->len, THIS->quoted); + _stp_text_str(THIS->__retvalue, THIS->input, THIS->len, THIS->quoted, 0); %} -- cgit