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
Родитель 793ad04198 6ebedabf2d
Коммит d60a6a662f
1 изменённых файлов: 3 добавлений и 3 удалений

6
gitk
Просмотреть файл

@ -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