Skip to content

Commit a66a7a2

Browse files
committed
Fix duplicate space character in option parsing code
1 parent 19c68ee commit a66a7a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tcl/main.tcl.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -988,15 +988,15 @@ if {[catch {
988988
}
989989
--width* {
990990
set asked_term_width [string range $arg 8 end]
991-
set term_width_arg --width
991+
set term_width_arg --width
992992
if {$asked_term_width eq {}} {
993993
set asked_term_width 0
994994
}
995995
}
996996
-w {
997997
##nagelfar ignore Found constant
998998
set nextargisval asked_term_width
999-
set term_width_arg -w
999+
set term_width_arg -w
10001000
}
10011001
-t - --terse - -l - --long - --default - -L - --latest - -S -\
10021002
--starts-with - -C - --contains - -j - --json - --output=* {

0 commit comments

Comments
 (0)