mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
enumerator.c: id_lazy is no longer used since r38923
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64384 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
bb8b44b078
commit
2c195f64cf
1 changed files with 1 additions and 2 deletions
|
@ -108,7 +108,7 @@
|
|||
VALUE rb_cEnumerator;
|
||||
static VALUE rb_cLazy;
|
||||
static ID id_rewind, id_new, id_yield, id_to_enum;
|
||||
static ID id_next, id_result, id_lazy, id_receiver, id_arguments, id_memo, id_method, id_force;
|
||||
static ID id_next, id_result, id_receiver, id_arguments, id_memo, id_method, id_force;
|
||||
static ID id_begin, id_end, id_step, id_exclude_end;
|
||||
static VALUE sym_each, sym_cycle;
|
||||
|
||||
|
@ -2875,7 +2875,6 @@ Init_Enumerator(void)
|
|||
id_new = rb_intern("new");
|
||||
id_next = rb_intern("next");
|
||||
id_result = rb_intern("result");
|
||||
id_lazy = rb_intern("lazy");
|
||||
id_receiver = rb_intern("receiver");
|
||||
id_arguments = rb_intern("arguments");
|
||||
id_memo = rb_intern("memo");
|
||||
|
|
Loading…
Add table
Reference in a new issue