File tree Expand file tree Collapse file tree 1 file changed +1
-13
lines changed Expand file tree Collapse file tree 1 file changed +1
-13
lines changed Original file line number Diff line number Diff line change @@ -10177,19 +10177,7 @@ proc getallcommits {} {
10177
10177
}
10178
10178
}
10179
10179
if {$ids ne {}} {
10180
- set cmd [concat $cmd $ids ]
10181
- # The maximum command line length for the CreateProcess function is 32767 characters, see
10182
- # http://blogs.msdn.com/oldnewthing/archive/2003/12/10/56028.aspx
10183
- # Be a little conservative in case Tcl adds some more stuff to the command line we do not
10184
- # know about and truncate the command line at a SHA1-boundary below 32000 characters.
10185
- if {[tk windowingsystem] == " win32" &&
10186
- [string length $cmd ] > 32000} {
10187
- set ndx [string last " " $cmd 32000]
10188
- if {$ndx != -1} {
10189
- set cmd [string range $cmd 0 $ndx ]
10190
- }
10191
- }
10192
- set fd [open $cmd r]
10180
+ set fd [open [concat $cmd $ids ] r]
10193
10181
fconfigure $fd -blocking 0
10194
10182
incr allcommits
10195
10183
nowbusy allcommits
You can’t perform that action at this time.
0 commit comments