Skip to content

Commit d60a6a6

Browse files
committed
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
2 parents 793ad04 + 6ebedab commit d60a6a6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

gitk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7478,9 +7478,9 @@ set revtreeargs {}
74787478
set cmdline_files {}
74797479
set i 0
74807480
foreach arg $argv {
7481-
switch -regexp -- $arg {
7482-
"^$" { }
7483-
"^-d" { set datemode 1 }
7481+
switch -- $arg {
7482+
"" { }
7483+
"-d" { set datemode 1 }
74847484
"--" {
74857485
set cmdline_files [lrange $argv [expr {$i + 1}] end]
74867486
break

0 commit comments

Comments
 (0)