Overview
SHA1 Hash: | facb4a8721e735bfc386a4a472d4ef72eec1b5c2 |
---|---|
Date: | 2007-11-30 04:27:05 |
User: | aku |
Comment: | Fixed bug in new changeset code, tagged and untagged item lists went out of sync. |
Timelines: | ancestors | descendants | both | trunk |
Other Links: | files | ZIP archive | manifest |
Tags And Properties
- branch=trunk inherited from [a28c83647d]
- sym-trunk inherited from [a28c83647d]
Changes
[hide diffs]Modified tools/cvs2fossil/lib/c2f_prev.tcl from [6ad5e03750] to [e7ab6ef540].
@@ -284,11 +284,12 @@ # update the in-memory index. We can simply (re)add the items # because we cleared the previously existing information, see # (*) above. Persistence does not matter here, none of the # changesets has been saved to the persistent state yet. - set myitems [lrange $myitems 0 $firste] + set myitems [lrange $myitems 0 $firste] + set mytitems [lrange $mytitems 0 $firste] foreach iid $myitems { set key [list $mytype $iid] set myitemmap($key) $self log write 8 csets {MAP+ item <$key> $self = [$self str]} }