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

ruby-changes:5187

From: mame <ko1@a...>
Date: Thu, 29 May 2008 22:46:23 +0900 (JST)
Subject: [ruby-changes:5187] Ruby:r16682 (trunk): remove a compile error.

mame	2008-05-29 22:44:29 +0900 (Thu, 29 May 2008)

  New Revision: 16682

  Modified files:
    trunk/io.c

  Log:
    remove a compile error.


  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi/trunk/io.c?r1=16682&r2=16681&diff_format=u

Index: io.c
===================================================================
--- io.c	(revision 16681)
+++ io.c	(revision 16682)
@@ -7193,7 +7193,7 @@
     VALUE ch;
 
   retry:
-    if (!next_argv()) return rb_eof_error();
+    if (!next_argv()) rb_eof_error();
     if (TYPE(current_file) != T_FILE) {
 	ch = rb_funcall3(current_file, rb_intern("getc"), 0, 0);
     }

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

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