1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* enumerator.c (enumerator_init_copy): typo fixed.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14407 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2007-12-21 06:18:25 +00:00
parent 0972cbc284
commit 1ee46d76c4
2 changed files with 3 additions and 1 deletions

View file

@ -12,6 +12,8 @@ Fri Dec 21 14:58:27 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
* enumerator.c (enumerator_init_copy): prohibit cloning of
generators since Fibers cannot be copied.
* enumerator.c (enumerator_init_copy): typo fixed.
Fri Dec 21 14:46:07 2007 Tanaka Akira <akr@fsij.org>
* io.c (Init_IO): define IO::BINARY even if O_BINARY is not exist.

View file

@ -288,7 +288,7 @@ enumerator_init_copy(VALUE obj, VALUE orig)
struct enumerator *ptr0, *ptr1;
ptr0 = enumerator_ptr(orig);
if (ptr1->fib) {
if (ptr0->fib) {
/* Fibers cannot be copied */
rb_raise(rb_eTypeError, "can't copy execution context");
}