Skip to content

Commit

Permalink
1.1b9_04
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/v1_1r@130 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
matz committed Mar 19, 1998
1 parent e9bd2d2 commit e31a044
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
10 changes: 8 additions & 2 deletions ChangeLog
@@ -1,3 +1,9 @@
Thu Mar 19 13:48:55 1998 Yukihiro Matsumoto <matz@netlab.co.jp>

* experimental release 1.1b9_04.

* parse.y (yylex): `10e0.9' should cause syntax error.

Wed Mar 18 17:46:31 1998 Yukihiro Matsumoto <matz@netlab.co.jp>

* ruby.c (load_file): new file object constant DATA. Only
Expand All @@ -13,8 +19,8 @@ Tue Mar 17 18:23:06 1998 Yukihiro Matsumoto <matz@netlab.co.jp>

* bignum.c (bigdivmod): calculates modulo.

* numeric.c (fix_remainder): returns reminder, formerly known as
modulo.
* numeric.c (fix_remainder): returns reminder, formerly introduced
as modulo.

* numeric.c (fix_modulo): calculates proper `modulo'.

Expand Down
2 changes: 1 addition & 1 deletion parse.y
Expand Up @@ -2604,7 +2604,7 @@ retry:
break;

case '.':
if (seen_point) {
if (seen_point || seen_e) {
goto decode_num;
}
else {
Expand Down
4 changes: 2 additions & 2 deletions version.h
@@ -1,2 +1,2 @@
#define RUBY_VERSION "1.1b9_03"
#define VERSION_DATE "98/03/16"
#define RUBY_VERSION "1.1b9_04"
#define VERSION_DATE "98/03/19"

0 comments on commit e31a044

Please sign in to comment.