summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--ext/tk/lib/tk.rb2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index ef21abf912..33dc10a341 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu Feb 12 09:56:19 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * ext/tk/lib/tk.rb (TkComm::tk_split_list): suppress a warning.
+
Thu Feb 12 02:23:56 2004 Tanaka Akira <akr@m17n.org>
* lib/pathname.rb: use assert_raise instead of assert_raises.
diff --git a/ext/tk/lib/tk.rb b/ext/tk/lib/tk.rb
index e6b4459a5a..f41763614f 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