Posted to tcl by rmax at Mon Jul 06 11:56:40 GMT 2009view pretty

# got
if {
    foo
} then {
    bar
} elseif {
          var
          bar
      } then {
    baz
}
# expected
if {
    foo
} then {
    bar
} elseif {
    var
    bar
} then {
    baz
}

Comments

Posted by rmax at Mon Jul 06 12:02:13 GMT 2009 [text] [code]

# even reproducable with plain [if]: # expected if { test foo } { bar } # got if { test foo } { bar }