Index: library/nx/nx.tcl =================================================================== diff -u -r5f765b6d8713f416a443cc2367c3a47903cc2f83 -r5784bce8b6b2f00b00b1f82ac3b50ee9c257a3ed --- library/nx/nx.tcl (.../nx.tcl) (revision 5f765b6d8713f416a443cc2367c3a47903cc2f83) +++ library/nx/nx.tcl (.../nx.tcl) (revision 5784bce8b6b2f00b00b1f82ac3b50ee9c257a3ed) @@ -529,12 +529,14 @@ return $r } - # unknown handler for Object - :protected method unknown {m args} { - if {![::nsf::current isnext]} { - error "[::nsf::current object]: unable to dispatch method '$m'" - } - } + # Default unknown-handler for Object + # + # Actually, we do not need thios unknwon handler, but we could + # define it as follows: + # + # :protected method unknown {m args} { + # error "[::nsf::current object]: unable to dispatch method '$m'" + # } # "init" must exist on Object. per default it is empty. :protected method init args {}