mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
intern.h: move rb_sym_all_symbols
* include/ruby/intern.h (rb_sym_count): move `rb_sym_all_symbols` to a symbol.c specific section. a part of patch by Lourens Naudé. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50603 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c7b63ec872
commit
3a08b7e204
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
Fri May 22 21:13:12 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* include/ruby/intern.h (rb_sym_count): move `rb_sym_all_symbols`
|
||||
to a symbol.c specific section. a part of patch by Lourens
|
||||
Naude.
|
||||
|
||||
Fri May 22 20:56:33 2015 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* complex.c (f_complex_polar): simple bug reproduced only when y is
|
||||
|
|
|
@ -636,7 +636,6 @@ VALUE rb_backref_get(void);
|
|||
void rb_backref_set(VALUE);
|
||||
VALUE rb_lastline_get(void);
|
||||
void rb_lastline_set(VALUE);
|
||||
VALUE rb_sym_all_symbols(void);
|
||||
/* process.c */
|
||||
void rb_last_status_set(int status, rb_pid_t pid);
|
||||
VALUE rb_last_status_get(void);
|
||||
|
@ -790,6 +789,8 @@ long rb_str_offset(VALUE, long);
|
|||
size_t rb_str_capacity(VALUE);
|
||||
VALUE rb_str_ellipsize(VALUE, long);
|
||||
VALUE rb_str_scrub(VALUE, VALUE);
|
||||
/* symbol.c */
|
||||
VALUE rb_sym_all_symbols(void);
|
||||
|
||||
#if defined(__GNUC__) && !defined(__PCC__)
|
||||
#define rb_str_new(str, len) __extension__ ( \
|
||||
|
|
Loading…
Reference in a new issue