Method: TkNamespace#tk_call_without_enc
- Defined in:
- lib/tk/namespace.rb
#tk_call_without_enc(*args) ⇒ Object Also known as: ns_tk_call_without_enc
230 231 232 233 234 235 |
# File 'lib/tk/namespace.rb', line 230 def tk_call_without_enc(*args) #super('namespace', 'eval', @fullname, *args) args = args.collect{|arg| (s = _get_eval_string(arg, true))? s: ''} super('namespace', 'eval', @fullname, TkCore::INTERP._merge_tklist(*args)) end |