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

ruby-changes:19605

From: usa <ko1@a...>
Date: Fri, 20 May 2011 15:37:08 +0900 (JST)
Subject: [ruby-changes:19605] usa:r31648 (trunk): * ChangeLog: monomaniac and meaningless format checks.

usa	2011-05-20 15:36:51 +0900 (Fri, 20 May 2011)

  New Revision: 31648

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

  Log:
    * ChangeLog: monomaniac and meaningless format checks.

  Modified files:
    trunk/ChangeLog

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 31647)
+++ ChangeLog	(revision 31648)
@@ -2,7 +2,7 @@
 
 	* gc.c: Fix build on m68k by 'error: too few arguments to
 	  function 'mark_locations_array''.
-	    
+
 Fri May 20 04:23:42 2011  Eric Hodel  <drbrain@s...>
 
 	* lib/scanf.rb:  Improve documentation.  Patch by Gabe McArthur.
@@ -152,7 +152,7 @@
 Tue May 17 19:35:01 2011  KOSAKI Motohiro  <kosaki.motohiro@g...>
 	Fix FreeBSD test failure.
 
-	* test/ruby/test_rubyoptions.rb	(TestRubyOptions#test_set_program_name):
+	* test/ruby/test_rubyoptions.rb (TestRubyOptions#test_set_program_name):
 	  use ps -o command instead of ps -o cmd. FreeBSD doesn't support
 	  -o cmd option.
 
@@ -269,8 +269,9 @@
 Sun May 15 21:22:35 2011  CHIKANAGA Tomoyuki  <nagachika00@g...>
 
 	* cont.c (cont_init): clear macihne_stack_start/end of saved thread to
-	  prevent mark machine stack of GC'ed Thread. root Fiber is not initialized by
-	  fiber_init(). based on a patch by Serge Balyuk [ruby-core:35891] fixes #4612
+	  prevent mark machine stack of GC'ed Thread. root Fiber is not
+	  initialized by fiber_init().
+	  based on a patch by Serge Balyuk [ruby-core:35891] fixes #4612
 	* test/ruby/test_fiber.rb (test_gc_root_fiber): add test for it.
 
 Sun May 15 21:04:29 2011  Nobuyoshi Nakada  <nobu@r...>
@@ -349,7 +350,7 @@
 Sat May 14 09:50:10 2011  Eric Hodel  <drbrain@s...>
 
 	* lib/yaml/dbm.rb:  Add documentation.  Patch by Justin Collins.
-          [Ruby 1.9 - Bug #4693]
+	  [Ruby 1.9 - Bug #4693]
 	* lib/yaml/store.rb:  ditto
 
 Sat May 14 09:31:43 2011  Eric Hodel  <drbrain@s...>
@@ -430,7 +431,7 @@
 Fri May 13 07:04:33 2011  Eric Hodel  <drbrain@s...>
 
 	* lib/mathn.rb:  Fix indentation.  Patch by Jason Dew.
-          [Ruby 1.9 - Feature #4682]
+	  [Ruby 1.9 - Feature #4682]
 
 Fri May 13 06:50:43 2011  Eric Hodel  <drbrain@s...>
 
@@ -490,9 +491,11 @@
 
 Thu May 12 12:24:22 2011  Nobuhiro Iwamatsu  <iwamatsu@n...>
 
-        * ext/openssl/ossl_ssl.c: By trunk@31346, function check of SSLv2 is executed.
-        However, the problem is not revised in this.
-        This adds the control of using function of SSLv2 in made macro by function check.
+	* ext/openssl/ossl_ssl.c: By trunk@31346, function check of SSLv2 is
+	  executed.
+	  However, the problem is not revised in this.
+	  This adds the control of using function of SSLv2 in made macro by
+	  function check.
 
 Thu May 12 08:10:46 2011  Eric Hodel  <drbrain@s...>
 
@@ -547,10 +550,10 @@
 Tue May 10 14:50:32 2011  Shota Fukumori  <sorah@t...>
 
 	* lib/test/unit.rb: Add option for hiding skip messages when test
-	ends. #4657
+	  ends. #4657
 
 	* test/testunit/test_hideskip.rb, test/testunit/test4test_hideskip.rb:
-	test for above.
+	  test for above.
 
 Tue May 10 10:53:04 2011  Eric Hodel  <drbrain@s...>
 
@@ -693,8 +696,9 @@
 
 	fix win32 native_cond_timedwait() makes SIGSEGV.
 
-	* thread_win32.h (rb_thread_cond_struct): add prev field instead of last.
-	  (ie cond_event_entry is now using double linked list instead of single)
+	* thread_win32.h (rb_thread_cond_struct): add prev field instead of
+	  last. (ie cond_event_entry is now using double linked list instead of
+	  single)
 	* thread_win32.c (cond_event_entry): add prev field.
 
 	* thread_win32.c (__cond_timedwait): remove entry properly if timeout
@@ -880,7 +884,7 @@
 Wed May  4 10:10:28 2011  KOSAKI Motohiro  <kosaki.motohiro@g...>
 
 	* ext/socket/init.c (wait_connectable): use rb_wait_for_single_fd().
-	The patch was written by Eric Wong. [Ruby 1.9 - Feature #4531]
+	  The patch was written by Eric Wong. [Ruby 1.9 - Feature #4531]
 
 	* ext/socket/init.c (try_wait_connectable, wait_connectable_ensure):
 	  removed.
@@ -888,11 +892,12 @@
 Wed May  4 10:07:48 2011  KOSAKI Motohiro  <kosaki.motohiro@g...>
 
 	* ext/io/wait/wait.c (io_wait): use rb_wait_for_single_fd().
-	The patch was written by Eric Wong. [Ruby 1.9 - Feature #4531]
+	  The patch was written by Eric Wong. [Ruby 1.9 - Feature #4531]
 
 Wed May  4 10:01:27 2011  KOSAKI Motohiro  <kosaki.motohiro@g...>
 
-	* thread.c (rb_wait_for_single_fd): new. poll(2) based backend for rb_wait_for_single_fd().
+	* thread.c (rb_wait_for_single_fd): new. poll(2) based backend for
+	  rb_wait_for_single_fd().
 	  Now only Linux uses it.
 
 	The patch was written by Eric Wong. [Ruby 1.9 - Feature #4531]
@@ -900,7 +905,8 @@
 Wed May  4 09:56:57 2011  KOSAKI Motohiro  <kosaki.motohiro@g...>
 
 	* thread.c (rb_wait_for_single_fd): new.
-	* thread.c (select_single): select(2) based backend for rb_wait_for_single_fd().
+	* thread.c (select_single): select(2) based backend for
+	  rb_wait_for_single_fd().
 
 	* io.c (make_writeconv): use rb_wait_for_single_fd() instead of
 	  rb_thread_fd_select().
@@ -1435,7 +1441,8 @@
 
 Thu Apr 14 16:01:45 2011  Kazuhiro NISHIYAMA  <zn@m...>
 
-	* io.c (rb_f_syscall): suppress warning: "HAVE___SYSCALL" is not defined.
+	* io.c (rb_f_syscall): suppress warning: "HAVE___SYSCALL" is not
+	  defined.
 
 Thu Apr 14 00:41:09 2011  CHIKANAGA Tomoyuki  <nagachika00@g...>
 
@@ -1505,7 +1512,8 @@
 Sat Apr  9 23:22:27 2011  Shota Fukumori  <sorah@t...>
 
 	* ext/stringio/stringio.c (strio_each):
-	  Fix exception message and don't raise immediately if block is not given.
+	  Fix exception message and don't raise immediately if block is not
+	  given.
 	  Fixes [ruby-dev:43394].
 
 	* test/stringio/test_stringio.rb (test_each_line_limit_0):
@@ -2079,7 +2087,8 @@
 
 Sat Mar 12 02:27:07 2011  Tadayoshi Funaba  <tadf@d...>
 
-	* ext/date/date_core.c ({d,dt}_lite_marshal_load): checks the given argument.
+	* ext/date/date_core.c ({d,dt}_lite_marshal_load): checks the given
+	  argument.
 
 Sat Mar 12 01:26:24 2011  Tadayoshi Funaba  <tadf@d...>
 
@@ -2590,7 +2599,7 @@
 Sun Feb 27 18:00:09 2011  Shota Fukumori  <sorah@t...>
 
 	* lib/test/unit.rb: Refactoring; Worker never use Hash for internal
-	storage.
+	  storage.
 
 	* lib/test/unit.rb: Never use Kernel#spawn. Use IO.popen instead.
 
@@ -3079,7 +3088,7 @@
 Tue Feb  8 11:47:11 2011  Loren Sands-Ramshaw  <lorensr@g...>
 
 	* array.c: documentation clarification in rotate, rotate!,
-	index, and rindex. [ruby-core:35144]
+	  index, and rindex. [ruby-core:35144]
 
 Wed Feb  9 09:45:43 2011  NAKAMURA Usaku  <usa@r...>
 
@@ -3105,7 +3114,8 @@
 
 Tue Feb  8 15:59:23 2011  KOSAKI Motohiro  <kosaki.motohiro@g...>
 
-	* process.c (rb_run_exec_options_err): use MODET2NUM() instead LONG2NUM().
+	* process.c (rb_run_exec_options_err): use MODET2NUM() instead
+	  LONG2NUM().
 
 Tue Feb  8 13:59:56 2011  KOSAKI Motohiro  <kosaki.motohiro@g...>
 
@@ -3523,7 +3533,8 @@
 
 Sun Jan 30 01:02:28 2011  KOSAKI Motohiro  <kosaki.motohiro@g...>
 
-	* include/ruby/ruby.h: Added NUM2MODET() and MODET2NUM() default definition.
+	* include/ruby/ruby.h: Added NUM2MODET() and MODET2NUM() default
+	  definition.
 	  Because r30686 introduced win32 build failure.
 
 Sat Jan 29 22:16:26 2011  NARUSE, Yui  <naruse@r...>
@@ -3599,8 +3610,8 @@
 Fri Jan 28 23:20:28 2011  KOSAKI Motohiro  <kosaki.motohiro@g...>
 
 	* test/gdbm/test_gdbm.rb (TestGDBM#test_s_open_no_create,
-	TestGDBM2#test_writer_open_notexist): We only need to skip libgdbm 1.8.0,
-	not all 1.8.x. 1.8.1 or later don't have GDBM_WRITER sickness.
+	  TestGDBM2#test_writer_open_notexist): We only need to skip libgdbm
+	  1.8.0, not all 1.8.x. 1.8.1 or later don't have GDBM_WRITER sickness.
 
 Fri Jan 28 21:56:57 2011  KOSAKI Motohiro  <kosaki.motohiro@g...>
 
@@ -4023,7 +4034,8 @@
 
 Tue Jan 18 18:31:14 2011  Keiju Ishitsuka  <keiju@i...>
 
-	* lib/irb/completion.rb: Irb tab completion support for XX::method forms.
+	* lib/irb/completion.rb: Irb tab completion support for XX::method
+	  forms.
 
 Tue Jan 18 15:05:55 2011  NAKAMURA, Hiroshi  <nahi@r...>
 
@@ -4172,7 +4184,8 @@
 Thu Jan 13 00:00:07 2011  KOSAKI Motohiro  <kosaki.motohiro@g...>
 
 	* io.c (rb_f_syscall): Some syscall return unsigned or pointer value.
-	  Therefore we should only check the result is -1 or not. [ruby-core:34062]
+	  Therefore we should only check the result is -1 or not.
+	  [ruby-core:34062]
 
 Wed Jan 12 23:55:48 2011  KOSAKI Motohiro  <kosaki.motohiro@g...>
 
@@ -4421,7 +4434,8 @@
 	* lib/irb/locale.rb (IRB::Locale#search_file): make it possible
 	  to load a localization from a gem.
 	  (IRB::Locale#lc_path): obsoleted because of the change of #search_file
-	  (IRB::Locale#each_localized_path): new private method, based on lc_path
+	  (IRB::Locale#each_localized_path): new private method, based on
+	  lc_path
 	  (IRB::Locale#find): follows the change of #search_file.
 	  (IRB::Locale#load): removed duplicate with #find.
 
@@ -4930,7 +4944,8 @@
 
 Mon Dec 20 01:55:03 2010  KOSAKI Motohiro  <kosaki.motohiro@g...>
 
-	* io.c (Init_IO): Added O_DIRECT. This feature was proposed by Run Paint Run Run.
+	* io.c (Init_IO): Added O_DIRECT. This feature was proposed by
+	  Run Paint Run Run.
 	  [Feature #4015] [ruby-core:33018]
 
 Sun Dec 19 19:15:23 2010  Tanaka Akira  <akr@f...>
@@ -5227,7 +5242,8 @@
 	* ext/tk/lib/multi-tk.rb: infinite loop on method_missing at loading.
 	  [ruby-dev:42716] [Ruby 1.9-Bug#4129]
 
-	* ext/tk/lib/multi-tk.rb: when no eventloop is running, ruby freezes at exit.
+	* ext/tk/lib/multi-tk.rb: when no eventloop is running, ruby freezes at
+	  exit.
 
 Sat Dec 11 02:23:15 2010  Aaron Patterson <aaron@t...>
 
@@ -5265,7 +5281,7 @@
 	  config.h.
 
 	* test/mkmf/test_sizeof.rb (TestMkmf::TestSizeof#test_sizeof_builtin),
-	 (TestMkmf::TestSizeof#test_sizeof_struct): more tests.
+	  (TestMkmf::TestSizeof#test_sizeof_struct): more tests.
 
 	* lib/mkmf.rb (check_signedness): should use the prelude code.
 	  [ruby-dev:42731]
@@ -6372,7 +6388,8 @@
 
 	* symbian/setup (config.h): Added HAVE_LABS and HAVE_LLABS to config.h.
 
-	* symbian/configure.bat: Changed packaging version in line with API style 3 versioning.
+	* symbian/configure.bat: Changed packaging version in line with API
+	  style 3 versioning.
 
 Sat Nov 13 16:37:56 2010  Nobuyoshi Nakada  <nobu@r...>
 
@@ -6386,7 +6403,8 @@
 
 Fri Nov 12 20:52:34 2010  Nobuyoshi Nakada  <nobu@r...>
 
-	* common.mk (showflags, help): use caret to quote leading spaces on Windows.
+	* common.mk (showflags, help): use caret to quote leading spaces on
+	  Windows.
 
 	* Makefile.in, common.mk, cygwin/GNUmakefile.in, enc/depend,
 	  ext/ripper/depend, lib/mkmf.rb, win32/Makefile.sub: caddle up.
@@ -7912,7 +7930,8 @@
 
 Fri Sep 24 15:28:35 2010  NARUSE, Yui  <naruse@r...>
 
-	* string.c (rb_str_rindex): use rb_enc_prev_char instead of repeated str_nth.
+	* string.c (rb_str_rindex): use rb_enc_prev_char instead of repeated
+	  str_nth.
 	  patched by Michael Selig [ruby-core:32498]
 
 Fri Sep 24 14:19:12 2010  URABE Shyouhei  <shyouhei@r...>
@@ -8704,7 +8723,7 @@
 Fri Aug 27 16:20:01 2010  URABE Shyouhei  <shyouhei@r...>
 
 	* string.c (rb_str_prepend): new method by Shota Fukumori (sora_h)
-	 [Feature #3765]
+	  [Feature #3765]
 
 Fri Aug 27 15:24:20 2010  NAKAMURA Usaku  <usa@r...>
 

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

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