Fossil SCM
Fix bad variable name.
Commit
4859304926731ffec95cf8977e46e5094dcffa60
Parent
af5904e6b7fade5…
1 file changed
+3
-3
| --- tools/cvs2fossil/lib/c2f_prevlink.tcl | ||
| +++ tools/cvs2fossil/lib/c2f_prevlink.tcl | ||
| @@ -76,14 +76,14 @@ | ||
| 76 | 76 | array set csetnextmap [$mycset nextmap] |
| 77 | 77 | |
| 78 | 78 | set prevrev [$myprev items] |
| 79 | 79 | set nextrev [$mynext items] |
| 80 | 80 | |
| 81 | - foreach items [$mycset items] { | |
| 82 | - set rt [RT $items] | |
| 81 | + foreach item [$mycset items] { | |
| 82 | + set rt [RT $item] | |
| 83 | 83 | incr mycount($rt) |
| 84 | - lappend mycategory($rt) $r | |
| 84 | + lappend mycategory($rt) $item | |
| 85 | 85 | } |
| 86 | 86 | return |
| 87 | 87 | } |
| 88 | 88 | |
| 89 | 89 | # Result is TRUE if and only breaking myset will do some good. |
| 90 | 90 |
| --- tools/cvs2fossil/lib/c2f_prevlink.tcl | |
| +++ tools/cvs2fossil/lib/c2f_prevlink.tcl | |
| @@ -76,14 +76,14 @@ | |
| 76 | array set csetnextmap [$mycset nextmap] |
| 77 | |
| 78 | set prevrev [$myprev items] |
| 79 | set nextrev [$mynext items] |
| 80 | |
| 81 | foreach items [$mycset items] { |
| 82 | set rt [RT $items] |
| 83 | incr mycount($rt) |
| 84 | lappend mycategory($rt) $r |
| 85 | } |
| 86 | return |
| 87 | } |
| 88 | |
| 89 | # Result is TRUE if and only breaking myset will do some good. |
| 90 |
| --- tools/cvs2fossil/lib/c2f_prevlink.tcl | |
| +++ tools/cvs2fossil/lib/c2f_prevlink.tcl | |
| @@ -76,14 +76,14 @@ | |
| 76 | array set csetnextmap [$mycset nextmap] |
| 77 | |
| 78 | set prevrev [$myprev items] |
| 79 | set nextrev [$mynext items] |
| 80 | |
| 81 | foreach item [$mycset items] { |
| 82 | set rt [RT $item] |
| 83 | incr mycount($rt) |
| 84 | lappend mycategory($rt) $item |
| 85 | } |
| 86 | return |
| 87 | } |
| 88 | |
| 89 | # Result is TRUE if and only breaking myset will do some good. |
| 90 |