[Commit] nickle string.5c,1.11,1.12

Bart Massey commit at keithp.com
Sun Nov 7 22:32:13 PST 2004


Committed by: bart

Update of /local/src/CVS/nickle
In directory home.keithp.com:/tmp/cvs-serv4949

Modified Files:
	string.5c 
Log Message:
Forgot "public" in previous checkin.



Index: string.5c
===================================================================
RCS file: /local/src/CVS/nickle/string.5c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- string.5c	8 Nov 2004 06:28:38 -0000	1.11
+++ string.5c	8 Nov 2004 06:32:10 -0000	1.12
@@ -52,7 +52,7 @@
     }
 
 
-    void shiftn(&(poly[...]) array, int n)
+    public void shiftn(&(poly[...]) array, int n)
     /*
      * Shift a growable array n elements: left is positive
      */
@@ -67,7 +67,7 @@
 	    setdim(array, f - n);
     }
 
-    void shift(&(poly[...]) array)
+    public void shift(&(poly[...]) array)
     /*
      * Shift a growable array one element to the left
      */
@@ -75,7 +75,7 @@
 	shiftn(&array, 1);
     }
 
-    string chump(string s)
+    public string chump(string s)
     /*
      * Return s with any trailing newlines removed
      */




More information about the Commit mailing list