Skip to content

Commit

Permalink
baseline
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/v1_1r@243 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
matz committed Jun 16, 1998
1 parent 83687c4 commit 16487ee
Show file tree
Hide file tree
Showing 28 changed files with 381 additions and 258 deletions.
16 changes: 16 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
Tue Jun 16 12:30:46 1998 Yukihiro Matsumoto <[email protected]>

* bignum.c (str2inum): handles `+ddd'.

* struct.c (make_struct): name parameter can be nil for unnamed
structures.

pMon Jun 15 16:30:10 1998 Yukihiro Matsumoto <[email protected]>

* object.c (class_s_inherited): prohibiting to make subclass of
class Class.

* object.c (module_s_new): support for making subclass of Module.

* parse.y (yycompile): clear eval_tree before compiling.

Fri Jun 12 17:58:18 1998 Yukihiro Matsumoto <[email protected]>

* eval.c (eval): write back the_dyna_var into the block.
Expand Down
4 changes: 2 additions & 2 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ install-sh
instruby.rb
intern.h
io.c
io.h
keywords
lex.c
main.c
Expand All @@ -59,8 +58,9 @@ regex.h
ruby.1
ruby.c
ruby.h
rubyio.h
rubysig.h
rubytest.rb
sig.h
signal.c
sprintf.c
st.c
Expand Down
6 changes: 5 additions & 1 deletion bignum.c
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,11 @@ str2inum(str, base)
USHORT *zds;

while (ISSPACE(*str)) str++;
if (*str == '-') {

if (*str == '|') {
str++;
}
else if (*str == '-') {
str++;
sign = 0;
}
Expand Down
6 changes: 5 additions & 1 deletion config.guess
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,11 @@ main ()
#endif
int version;
version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`;
printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version);
if (version < 4)
printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version);
else
printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version);
exit (0);
#endif
Expand Down
2 changes: 1 addition & 1 deletion config.sub
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ case $os in
| -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
| -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
| -cygwin32* | -pe* | -psos* | -moss* | -proelf* \
| -linux* | -bow*)
| -linux* | -bow* | -rhapsody* | -openstep* )
# Remember, each alternative MUST END IN *, to match a version number.
;;
-sunos5*)
Expand Down
Loading

0 comments on commit 16487ee

Please sign in to comment.