Index: tests/method-parameter.test =================================================================== diff -u -re52f2dd0f35e8a12230a20e90575f242da4e0e5c -rd62bca12731d1c7a1a5cf63f950275852c5b05a2 --- tests/method-parameter.test (.../method-parameter.test) (revision e52f2dd0f35e8a12230a20e90575f242da4e0e5c) +++ tests/method-parameter.test (.../method-parameter.test) (revision d62bca12731d1c7a1a5cf63f950275852c5b05a2) @@ -42,7 +42,7 @@ nsf::proc p2a {-x args} {return [list [info exists x] $args]} nsf::proc p2b {-x args:noleadingdash} {return [list [info exists x] $args]} - nsf::proc p2c {-x:noleadingdash args:noleadingdash} {return [list [info exists x] $args]} + nsf::proc p2c {-x args:noleadingdash} {return [list [info exists x] $args]} ? {p2a -x -y} {1 {}} ;# "-y" is the value of "x" ? {p2b -x -y} {1 {}} ;# "-y" is the value of "x"