summaryrefslogtreecommitdiff
path: root/ext/tk/lib/tkconsole.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ext/tk/lib/tkconsole.rb')
-rw-r--r--ext/tk/lib/tkconsole.rb28
1 files changed, 2 insertions, 26 deletions
diff --git a/ext/tk/lib/tkconsole.rb b/ext/tk/lib/tkconsole.rb
index d97df159fc..9960ddb8ac 100644
--- a/ext/tk/lib/tkconsole.rb
+++ b/ext/tk/lib/tkconsole.rb
@@ -1,28 +1,4 @@
#
-# tkconsole.rb : control the console on system without a real console
+# tkconsole.rb - load tk/console.rb
#
-require 'tk'
-
-module TkConsole
- include Tk
- extend Tk
-
- TkCommandNames = ['console'.freeze].freeze
-
- def self.title(str=None)
- tk_call 'console', str
- end
- def self.hide
- tk_call 'console', 'hide'
- end
- def self.show
- tk_call 'console', 'show'
- end
- def self.eval(tcl_script)
- #
- # supports a Tcl script only
- # I have no idea to support a Ruby script seamlessly.
- #
- tk_call 'console', 'eval', tcl_script
- end
-end
+require 'tk/console'