mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
intern.h: move rb_ary_cat from internal.h
* include/ruby/intern.h (rb_ary_cat): move from internal.h, since it is described in README.EXT. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43015 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
0b39c8a08d
commit
f5f0b869e9
3 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Mon Sep 23 05:07:49 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* include/ruby/intern.h (rb_ary_cat): move from internal.h, since it
|
||||
is described in README.EXT.
|
||||
|
||||
Sun Sep 22 20:55:20 2013 Kazuki Tsujimoto <kazuki@callcc.net>
|
||||
|
||||
* vm_insnhelper.c (vm_make_proc_with_iseq): fix bug message.
|
||||
|
|
|
@ -63,6 +63,7 @@ VALUE rb_ary_dup(VALUE);
|
|||
VALUE rb_ary_resurrect(VALUE ary);
|
||||
VALUE rb_ary_to_ary(VALUE);
|
||||
VALUE rb_ary_to_s(VALUE);
|
||||
VALUE rb_ary_cat(VALUE, const VALUE *, long);
|
||||
VALUE rb_ary_push(VALUE, VALUE);
|
||||
VALUE rb_ary_pop(VALUE);
|
||||
VALUE rb_ary_shift(VALUE);
|
||||
|
|
|
@ -316,7 +316,6 @@ struct vtm; /* defined by timev.h */
|
|||
/* array.c */
|
||||
VALUE rb_ary_last(int, VALUE *, VALUE);
|
||||
void rb_ary_set_len(VALUE, long);
|
||||
VALUE rb_ary_cat(VALUE, const VALUE *, long);
|
||||
void rb_ary_delete_same(VALUE, VALUE);
|
||||
|
||||
/* bignum.c */
|
||||
|
|
Loading…
Add table
Reference in a new issue