summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-05-06 09:16:06 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-05-06 09:16:06 +0000
commit71ad3aa4ffdf0c5e8b387bb9c258ce1b66d6836e (patch)
treec84dbe1dbadb1d0e1667a39d2e638420974a590f
parent6b7b84edc7168786408b0757e2eb53728d1b71a6 (diff)
*** empty log message ***
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/v1_1r@203 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog8
-rw-r--r--error.c2
-rw-r--r--version.h4
3 files changed, 11 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index e195ac095d..a6546a3117 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Wed May 6 15:48:03 1998 Yukihiro Matsumoto <matz@netlab.co.jp>
+
+ * experimental release 1.1b9_17.
+
Wed May 6 01:37:39 1998 Yukihiro Matsumoto <matz@netlab.co.jp>
* eval.c: remove global variable `errat'.
@@ -54,6 +58,10 @@ Thu Apr 30 01:08:35 1998 Yukihiro Matsumoto <matz@netlab.co.jp>
* error.c (exc_new): need to check whether invalid class (not a
subclass of String) is specified.
+Wed Apr 29 21:05:44 1998 WATANABE Hirofumi <eban@os.rim.or.jp>
+
+ * ruby.c (proc_options): option '-e' via tempfile.
+
Tue Apr 28 15:27:58 1998 Yukihiro Matsumoto <matz@netlab.co.jp>
* experimental release 1.1b9_16.
diff --git a/error.c b/error.c
index ae7a713578..8c566461c8 100644
--- a/error.c
+++ b/error.c
@@ -433,7 +433,7 @@ Init_Exception()
rb_define_method(eException, "message", exc_to_s, 0);
rb_define_method(eException, "inspect", exc_inspect, 0);
rb_define_method(eException, "backtrace", exc_backtrace, 0);
- rb_define_private_method(eException, "set_backtrace", exc_set_backtrace, 1);
+ rb_define_method(eException, "set_backtrace", exc_set_backtrace, 1);
eSystemExit = rb_define_class("SystemExit", eException);
eFatal = rb_define_class("fatal", eException);
diff --git a/version.h b/version.h
index 204a305e2a..7650e9aadd 100644
--- a/version.h
+++ b/version.h
@@ -1,2 +1,2 @@
-#define RUBY_VERSION "1.1b9_16"
-#define VERSION_DATE "98/04/28"
+#define RUBY_VERSION "1.1b9_17"
+#define VERSION_DATE "98/05/06"