Merge branch 'master' of git://git.kernel.org/pub/scm/gitk/gitk

* 'master' of git://git.kernel.org/pub/scm/gitk/gitk:
  gitk: Fix bug introduced by previous commit
This commit is contained in:
Junio C Hamano 2007-07-13 22:37:42 -07:00
commit d60a6a662f

6
gitk
View file

@ -7478,9 +7478,9 @@ set revtreeargs {}
set cmdline_files {}
set i 0
foreach arg $argv {
switch -regexp -- $arg {
"^$" { }
"^-d" { set datemode 1 }
switch -- $arg {
"" { }
"-d" { set datemode 1 }
"--" {
set cmdline_files [lrange $argv [expr {$i + 1}] end]
break