summaryrefslogtreecommitdiffstats
path: root/library/opt
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2024-06-13 08:57:12 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2024-06-13 08:57:12 (GMT)
commite80a9647f5b435daaa052bbe487314a47794fdca (patch)
treed106c4c491093a055990c1b43af9b1d3eca0458f /library/opt
parentf6f180df58c8c736937a105dbb2cdac6755f7c13 (diff)
downloadtcl-e80a9647f5b435daaa052bbe487314a47794fdca.zip
tcl-e80a9647f5b435daaa052bbe487314a47794fdca.tar.gz
tcl-e80a9647f5b435daaa052bbe487314a47794fdca.tar.bz2
Use tabs for indenting in stead of 8 spaces
Diffstat (limited to 'library/opt')
-rw-r--r--library/opt/optparse.tcl2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/opt/optparse.tcl b/library/opt/optparse.tcl
index 0a6cdfa..1aec83b 100644
--- a/library/opt/optparse.tcl
+++ b/library/opt/optparse.tcl
@@ -785,7 +785,7 @@ proc ::tcl::OptCheckType {arg type {typeArgs ""}} {
if {[regexp {^-(.+)$} $arg1 x type]} {
# flags/optValue as they are optional, need a "value",
# on the contrary, for a variable (non optional),
- # default value is pointless, 'cept for choices :
+ # default value is pointless, 'cept for choices :
if {$isflag || $isopt || ($type == "choice")} {
return [OptNewInst $state $varname $type $arg2 ""]
} else {