Method: TkNamespace#tk_call_with_enc

Defined in:
ext/lib/tk/namespace.rb

#tk_call_with_enc(*args) ⇒ Object Also known as: ns_tk_call_with_enc



235
236
237
238
239
240
# File 'ext/lib/tk/namespace.rb', line 235

def tk_call_with_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