Update of /cvsroot/monetdb/MonetDB4/src/modules/plain
In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv6077/src/modules/plain

Modified Files:
      Tag: MonetDB_4-20
        str.mx 
Log Message:
renamed string* functions into * (need names equal to m5)


Index: str.mx
===================================================================
RCS file: /cvsroot/monetdb/MonetDB4/src/modules/plain/str.mx,v
retrieving revision 1.3
retrieving revision 1.3.6.1
diff -u -d -r1.3 -r1.3.6.1
--- str.mx      20 Feb 2007 11:32:14 -0000      1.3
+++ str.mx      13 Dec 2007 15:09:40 -0000      1.3.6.1
@@ -206,10 +206,10 @@
 proc stringlength( str s) : int {
        return length(rtrim(s));
 }
-proc stringinsert( str s, int start, int l, str s2 ) : str {
+proc insert( str s, int start, int l, str s2 ) : str {
        return substring(s,start,l) + s2 + substring(s,start+l);
 }
-proc stringreplace( str s1, str s2, str s3 ) : str {
+proc replace( str s1, str s2, str s3 ) : str {
        return substitute(s1,s2,s3, true);
 }
 # string of c times s


-------------------------------------------------------------------------
SF.Net email is sponsored by:
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services
for just about anything Open Source.
http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace
_______________________________________________
Monetdb-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-checkins

Reply via email to