Index: library/nx/nx.tcl =================================================================== diff -u -r851e2c38fe3ae9d84f531605d55defe2e1308a02 -r67ad561b71e208451454fc1d71e591e75e4f3a71 --- library/nx/nx.tcl (.../nx.tcl) (revision 851e2c38fe3ae9d84f531605d55defe2e1308a02) +++ library/nx/nx.tcl (.../nx.tcl) (revision 67ad561b71e208451454fc1d71e591e75e4f3a71) @@ -528,12 +528,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 {}