Skip to content

Commit

Permalink
Merge branch 'master' of git://git.kernel.org/pub/scm/gitk/gitk
Browse files Browse the repository at this point in the history
* 'master' of git://git.kernel.org/pub/scm/gitk/gitk:
  gitk: Fix bug introduced by previous commit
  • Loading branch information
Junio C Hamano committed Jul 14, 2007
2 parents 793ad04 + 6ebedab commit d60a6a6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gitk
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d60a6a6

Please sign in to comment.