mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* include/ruby/intern.h (rb_str_tmp_new, rb_str_shared_replace):
prototype moved. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15072 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c3e2bdcc20
commit
ce2652c9d4
5 changed files with 10 additions and 7 deletions
|
@ -1,3 +1,8 @@
|
|||
Wed Jan 16 12:51:30 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* include/ruby/intern.h (rb_str_tmp_new, rb_str_shared_replace):
|
||||
prototype moved.
|
||||
|
||||
Tue Jan 15 23:52:51 2008 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* enc/*: add ARG_UNUSED.
|
||||
|
|
1
array.c
1
array.c
|
@ -3046,7 +3046,6 @@ rb_ary_cycle(VALUE ary)
|
|||
return Qnil;
|
||||
}
|
||||
|
||||
VALUE rb_str_tmp_new(long);
|
||||
#define tmpbuf(n, size) rb_str_tmp_new((n)*(size))
|
||||
|
||||
/*
|
||||
|
|
|
@ -498,7 +498,9 @@ VALUE rb_tainted_str_new(const char*, long);
|
|||
VALUE rb_tainted_str_new2(const char*);
|
||||
VALUE rb_str_buf_new(long);
|
||||
VALUE rb_str_buf_new2(const char*);
|
||||
VALUE rb_str_tmp_new(long);
|
||||
void rb_str_free(VALUE);
|
||||
void rb_str_shared_replace(VALUE, VALUE);
|
||||
VALUE rb_str_buf_append(VALUE, VALUE);
|
||||
VALUE rb_str_buf_cat(VALUE, const char*, long);
|
||||
VALUE rb_str_buf_cat2(VALUE, const char*);
|
||||
|
|
|
@ -15,9 +15,6 @@
|
|||
#include "transcode_data.h"
|
||||
#include <ctype.h>
|
||||
|
||||
VALUE rb_str_tmp_new(long);
|
||||
VALUE rb_str_shared_replace(VALUE, VALUE);
|
||||
|
||||
/*
|
||||
* Dispatch data and logic
|
||||
*/
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#define RUBY_VERSION "1.9.0"
|
||||
#define RUBY_RELEASE_DATE "2008-01-15"
|
||||
#define RUBY_RELEASE_DATE "2008-01-16"
|
||||
#define RUBY_VERSION_CODE 190
|
||||
#define RUBY_RELEASE_CODE 20080115
|
||||
#define RUBY_RELEASE_CODE 20080116
|
||||
#define RUBY_PATCHLEVEL 0
|
||||
|
||||
#define RUBY_VERSION_MAJOR 1
|
||||
|
@ -9,7 +9,7 @@
|
|||
#define RUBY_VERSION_TEENY 0
|
||||
#define RUBY_RELEASE_YEAR 2008
|
||||
#define RUBY_RELEASE_MONTH 1
|
||||
#define RUBY_RELEASE_DAY 15
|
||||
#define RUBY_RELEASE_DAY 16
|
||||
|
||||
#ifdef RUBY_EXTERN
|
||||
RUBY_EXTERN const char ruby_version[];
|
||||
|
|
Loading…
Reference in a new issue