[Commit] nickle ChangeLog, 1.7, 1.8 box.c, 1.18, 1.19 version.m4, 1.6, 1.7

Keith Packard commit at keithp.com
Sat Jan 17 07:32:19 PST 2004


Committed by: keithp

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

Modified Files:
	ChangeLog box.c version.m4 
Log Message:
2004-01-18  Keith Packard  <keithp at keithp.com>

	* box.c: (NewBox):
	box->replace was uninitialized


Index: ChangeLog
===================================================================
RCS file: /local/src/CVS/nickle/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- ChangeLog	14 Dec 2003 07:45:01 -0000	1.7
+++ ChangeLog	17 Jan 2004 15:32:15 -0000	1.8
@@ -1,3 +1,8 @@
+2004-01-18  Keith Packard  <keithp at keithp.com>
+
+	* box.c: (NewBox):
+	box->replace was uninitialized
+
 2003-12-13  Keith Packard  <keithp at keithp.com>
 
 	* compile.c: (CompileBuildArray), (CompileArrayInit),

Index: box.c
===================================================================
RCS file: /local/src/CVS/nickle/box.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- box.c	17 Mar 2003 20:32:56 -0000	1.18
+++ box.c	17 Jan 2004 15:32:15 -0000	1.19
@@ -37,10 +37,10 @@
 
     box = ALLOCATE (&BoxType, sizeof (Box) + nvalues * sizeof (Value));
     box->constant = constant;
-/*    box->array = array; */
     box->homogeneous = True;
-    box->u.type = type;
+    box->replace = False;
     box->nvalues = nvalues;
+    box->u.type = type;
     for (i = 0; i < nvalues; i++)
 	BoxValueSet(box, i, 0);
     RETURN (box);

Index: version.m4
===================================================================
RCS file: /local/src/CVS/nickle/version.m4,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- version.m4	10 Jan 2004 06:20:02 -0000	1.6
+++ version.m4	17 Jan 2004 15:32:15 -0000	1.7
@@ -1,7 +1,7 @@
 dnl This file is maintained automatically by update-version.sh
 dnl The file format is finicky, so do not hand-edit lightly.
-dnl Last updated Thu Jan  8 01:05:11 PST 2004
+dnl Last updated Sun Jan 18 01:55:57 CST 2004
 dnl CURHEADER $Header$
-dnl OLDHEADER <Header: /local/src/CVS/nickle/version.m4,v 1.5 2003/12/14 07:45:01 keithp Exp >
-dnl CURVERSION 2.26
-define([VERSION_NUMBER],[2.26])
+dnl OLDHEADER <Header: /local/src/CVS/nickle/version.m4,v 1.6 2004/01/10 06:20:02 keithp Exp >
+dnl CURVERSION 2.27
+define([VERSION_NUMBER],[2.27])




More information about the Commit mailing list