From b43d52a713de7f208c8e0023edfcaff6b7b41369 Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 12 Feb 2004 00:56:24 +0000 Subject: * ext/tk/lib/tk.rb (TkComm::tk_split_list): suppress a warning. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5674 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/tk/lib/tk.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext') diff --git a/ext/tk/lib/tk.rb b/ext/tk/lib/tk.rb index e6b4459a5..f41763614 100644 --- a/ext/tk/lib/tk.rb +++ b/ext/tk/lib/tk.rb @@ -139,7 +139,7 @@ module TkComm list << token.gsub(/^\{(.*)\}$/, '\1') if token if list.size == 1 - tk_tcl2ruby(list[0].gsub(/\\(\{|})/, '\1')) + tk_tcl2ruby(list[0].gsub(/\\(\{|\})/, '\1')) else list.collect{|token| tk_split_list(token)} end -- cgit