Check-in [21d9664fb5]
Not logged in
Overview

SHA1 Hash:21d9664fb53160b4240f3088da98cdfcf031e9bf
Date: 2008-02-08 04:49:36
User: aku
Comment:Properly initialize the array containing the changesets split by type.
Timelines: ancestors | descendants | both | trunk
Other Links: files | ZIP archive | manifest

Tags And Properties
Changes
[hide diffs]

Modified tools/cvs2fossil/lib/c2f_prev.tcl from [90fc37a923] to [c1187b458c].

@@ -969,12 +969,18 @@
 
     # # ## ### ##### ######## #############
 
     typevariable mychangesets         {} ; # List of all known
 					   # changesets.
-    typevariable mytchangesets -array {} ; # List of all known
-					   # changesets of a type.
+
+    # List of all known changesets of a type.
+    typevariable mytchangesets -array {
+	sym::branch {}
+	sym::tag    {}
+	rev         {}
+    }
+
     typevariable myitemmap     -array {} ; # Map from items (tagged)
 					   # to the list of changesets
 					   # containing it. Each item
 					   # can be used by only one
 					   # changeset.