summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--version.h2
-rw-r--r--vm_eval.c2
3 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 1d633b9549..8f6097d516 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sat Jun 13 06:45:46 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * vm_eval.c (rb_f_throw): fixed rdoc about execption.
+ [ruby-core:23824]
+
Fri Jun 12 14:56:50 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* file.c (file_expand_path): associate the input encoding when
diff --git a/version.h b/version.h
index f30cf05159..a1ec7ff19f 100644
--- a/version.h
+++ b/version.h
@@ -1,6 +1,6 @@
#define RUBY_VERSION "1.9.1"
#define RUBY_RELEASE_DATE "2009-05-22"
-#define RUBY_PATCHLEVEL 174
+#define RUBY_PATCHLEVEL 175
#define RUBY_VERSION_MAJOR 1
#define RUBY_VERSION_MINOR 9
#define RUBY_VERSION_TEENY 1
diff --git a/vm_eval.c b/vm_eval.c
index 0ec847882a..cbcc55f417 100644
--- a/vm_eval.c
+++ b/vm_eval.c
@@ -1141,7 +1141,7 @@ NORETURN(static VALUE rb_f_throw _((int, VALUE *)));
* throw(symbol [, obj])
*
* Transfers control to the end of the active +catch+ block
- * waiting for _symbol_. Raises +NameError+ if there
+ * waiting for _symbol_. Raises +ArgumentError+ if there
* is no +catch+ block for the symbol. The optional second
* parameter supplies a return value for the +catch+ block,
* which otherwise defaults to +nil+. For examples, see