diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-03-16 21:40:05 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-03-16 21:40:05 +0000 |
commit | ae1951a030cd25bb6f3fecaf156c8bd047a91648 (patch) | |
tree | 27cf93266f40b65f7bad95f73aaffac4f29647f3 | |
parent | 7dbb035ba85215a39725d8a4922bff06a35cab3e (diff) |
* ruby.h (rb_warning, rb_sys_warning): fixed typo in rdoc.
[ruby-core:28696]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@26960 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | ruby.h | 4 | ||||
-rw-r--r-- | version.h | 6 |
3 files changed, 10 insertions, 5 deletions
@@ -1,3 +1,8 @@ +Wed Mar 17 06:39:59 2010 Nobuyoshi Nakada <[email protected]> + + * ruby.h (rb_warning, rb_sys_warning): fixed typo in rdoc. + [ruby-core:28696] + Sat Mar 13 11:06:30 2010 Nobuyoshi Nakada <[email protected]> * ext/nkf/nkf-utf8/nkf.c (numchar_getc): get rid of buffer @@ -591,8 +591,8 @@ NORETURN(void rb_iter_break _((void))); NORETURN(void rb_exit _((int))); NORETURN(void rb_notimplement _((void))); -void rb_warning __((const char*, ...)); /* reports if `-w' specified */ -void rb_sys_warning __((const char*, ...)); /* reports if `-w' specified */ +void rb_warning __((const char*, ...)); /* reports if `-W' specified */ +void rb_sys_warning __((const char*, ...)); /* reports if `-W' specified */ void rb_warn __((const char*, ...)); /* reports always */ typedef VALUE rb_block_call_func _((VALUE, VALUE)); @@ -1,7 +1,7 @@ #define RUBY_VERSION "1.8.8" -#define RUBY_RELEASE_DATE "2010-03-13" +#define RUBY_RELEASE_DATE "2010-03-17" #define RUBY_VERSION_CODE 188 -#define RUBY_RELEASE_CODE 20100313 +#define RUBY_RELEASE_CODE 20100317 #define RUBY_PATCHLEVEL -1 #define RUBY_VERSION_MAJOR 1 @@ -9,7 +9,7 @@ #define RUBY_VERSION_TEENY 8 #define RUBY_RELEASE_YEAR 2010 #define RUBY_RELEASE_MONTH 3 -#define RUBY_RELEASE_DAY 13 +#define RUBY_RELEASE_DAY 17 #ifdef RUBY_EXTERN RUBY_EXTERN const char ruby_version[]; |