[前][次][番号順一覧][スレッド一覧]

ruby-changes:9463

From: yugui <ko1@a...>
Date: Thu, 25 Dec 2008 18:52:10 +0900 (JST)
Subject: [ruby-changes:9463] Ruby:r21001 (ruby_1_9_1): merges r20913 from trunk into ruby_1_9_1.

yugui	2008-12-25 18:51:39 +0900 (Thu, 25 Dec 2008)

  New Revision: 21001

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=21001

  Log:
    merges r20913 from trunk into ruby_1_9_1.
    * ext/tk/tcltklib.c: fix wrong flag value.

  Modified files:
    branches/ruby_1_9_1/ChangeLog
    branches/ruby_1_9_1/ext/tk/tcltklib.c

Index: ruby_1_9_1/ChangeLog
===================================================================
--- ruby_1_9_1/ChangeLog	(revision 21000)
+++ ruby_1_9_1/ChangeLog	(revision 21001)
@@ -1,3 +1,7 @@
+Mon Dec 22 18:00:36 2008  Hidetoshi NAGAI  <nagai@a...>
+
+	* ext/tk/tcltklib.c: fix wrong flag value.
+
 Mon Dec 22 12:26:18 2008  Nobuyoshi Nakada  <nobu@r...>
 
 	* cygwin/GNUmakefile.in (rubydll.def), win32/mkexports.rb
Index: ruby_1_9_1/ext/tk/tcltklib.c
===================================================================
--- ruby_1_9_1/ext/tk/tcltklib.c	(revision 21000)
+++ ruby_1_9_1/ext/tk/tcltklib.c	(revision 21001)
@@ -4,7 +4,7 @@
  *              Oct. 24, 1997   Y. Matsumoto
  */
 
-#define TCLTKLIB_RELEASE_DATE "2008-12-03"
+#define TCLTKLIB_RELEASE_DATE "2008-12-22"
 
 #include "ruby.h"
 
@@ -411,7 +411,7 @@
 Tcl_ThreadId tk_eventloop_thread_id;  /* native thread ID of Tcl interpreter */
 #endif
 static VALUE eventloop_stack;
-static int   window_event_mode = ( ~ TCL_IDLE_EVENTS | TCL_WINDOW_EVENTS );
+static int   window_event_mode = ~0;
 
 static VALUE watchdog_thread;
 
@@ -1187,7 +1187,7 @@
     if (RTEST(mode)) {
       window_event_mode = ~0;
     } else {
-      window_event_mode = ~(TCL_WINDOW_EVENTS | TCL_IDLE_EVENTS);
+      window_event_mode = ~TCL_WINDOW_EVENTS;
     }
 
     return mode;
@@ -10152,3 +10152,4 @@
 }
 
 /* eof */
+

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]