summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--ruby.h4
-rw-r--r--version.h6
3 files changed, 10 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index d4e82ef2c7..1f39c16cca 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/ruby.h b/ruby.h
index b44fb9bd34..8ea90bad7c 100644
--- a/ruby.h
+++ b/ruby.h
@@ -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));
diff --git a/version.h b/version.h
index 3a63f31412..1e87f8d37c 100644
--- a/version.h
+++ b/version.h
@@ -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[];