mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* enumerator.c (enumerator_next): message changed.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13279 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
d55c0f5382
commit
98d6d636e3
3 changed files with 8 additions and 4 deletions
|
@ -24,6 +24,10 @@ Sun Aug 26 05:52:08 2007 Koichi Sasada <ko1@atdot.net>
|
|||
|
||||
* test/ruby/test_fiber.rb: fix to require 'continuation'.
|
||||
|
||||
Sat Aug 25 23:52:14 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* enumerator.c (enumerator_next): message changed.
|
||||
|
||||
Sat Aug 25 23:22:14 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* include/ruby/encoding.h: remove unused rb_enc_ismbchar().
|
||||
|
|
|
@ -424,7 +424,7 @@ enumerator_next(VALUE obj)
|
|||
e->fib = 0;
|
||||
e->dst = Qnil;
|
||||
e->no_next = Qfalse;
|
||||
rb_raise(rb_eStopIteration, "Enumerator#each reached at end");
|
||||
rb_raise(rb_eStopIteration, "iteration reached at end");
|
||||
}
|
||||
return v;
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#define RUBY_VERSION "1.9.0"
|
||||
#define RUBY_RELEASE_DATE "2007-08-26"
|
||||
#define RUBY_RELEASE_DATE "2007-08-27"
|
||||
#define RUBY_VERSION_CODE 190
|
||||
#define RUBY_RELEASE_CODE 20070826
|
||||
#define RUBY_RELEASE_CODE 20070827
|
||||
#define RUBY_PATCHLEVEL 0
|
||||
|
||||
#define RUBY_VERSION_MAJOR 1
|
||||
|
@ -9,7 +9,7 @@
|
|||
#define RUBY_VERSION_TEENY 0
|
||||
#define RUBY_RELEASE_YEAR 2007
|
||||
#define RUBY_RELEASE_MONTH 8
|
||||
#define RUBY_RELEASE_DAY 26
|
||||
#define RUBY_RELEASE_DAY 27
|
||||
|
||||
#ifdef RUBY_EXTERN
|
||||
RUBY_EXTERN const char ruby_version[];
|
||||
|
|
Loading…
Reference in a new issue