1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

*** empty log message ***

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/v1_1r@203 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 1998-05-06 09:16:06 +00:00
parent 6b7b84edc7
commit 71ad3aa4ff
3 changed files with 11 additions and 3 deletions

View file

@ -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> Wed May 6 01:37:39 1998 Yukihiro Matsumoto <matz@netlab.co.jp>
* eval.c: remove global variable `errat'. * 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 * error.c (exc_new): need to check whether invalid class (not a
subclass of String) is specified. 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> Tue Apr 28 15:27:58 1998 Yukihiro Matsumoto <matz@netlab.co.jp>
* experimental release 1.1b9_16. * experimental release 1.1b9_16.

View file

@ -433,7 +433,7 @@ Init_Exception()
rb_define_method(eException, "message", exc_to_s, 0); rb_define_method(eException, "message", exc_to_s, 0);
rb_define_method(eException, "inspect", exc_inspect, 0); rb_define_method(eException, "inspect", exc_inspect, 0);
rb_define_method(eException, "backtrace", exc_backtrace, 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); eSystemExit = rb_define_class("SystemExit", eException);
eFatal = rb_define_class("fatal", eException); eFatal = rb_define_class("fatal", eException);

View file

@ -1,2 +1,2 @@
#define RUBY_VERSION "1.1b9_16" #define RUBY_VERSION "1.1b9_17"
#define VERSION_DATE "98/04/28" #define VERSION_DATE "98/05/06"