Skip to content

Commit

Permalink
2000-06-19
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@767 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
matz committed Jun 19, 2000
1 parent c613f62 commit b8148f4
Show file tree
Hide file tree
Showing 12 changed files with 209 additions and 70 deletions.
42 changes: 42 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Mon Jun 19 10:48:28 2000 Yukihiro Matsumoto <matz@netlab.co.jp>

* variable.c (rb_cvar_set): forgot to add security check for class
variable assignment.

Sun Jun 18 22:49:13 2000 WATANABE Hirofumi <eban@os.rim.or.jp>

* configure.in: single quoted sitedir.
Expand All @@ -9,6 +14,33 @@ Sun Jun 18 22:49:13 2000 WATANABE Hirofumi <eban@os.rim.or.jp>
* ruby.c (load_file): force binmode if fname includes ".exe"
on DOSISH.

Sat Jun 17 23:22:17 2000 Yukihiro Matsumoto <matz@netlab.co.jp>

* sprintf.c (rb_f_sprintf): should ignore negative precision given
by <%.*>.

* sprintf.c (rb_f_sprintf): should allow zero precision.

Sat Jun 17 03:13:29 2000 Yukihiro Matsumoto <matz@netlab.co.jp>

* time.c (time_localtime): avoid unnecessary call of localtime.

* time.c (time_gmtime): avoid unnecessary call of gmtime.

* process.c (proc_wait2): new method.

* process.c (proc_waitpid): second argument made optional.

* process.c (proc_waitpid2): new method.

Sat Jun 17 00:05:00 2000 Yukihiro Matsumoto <matz@netlab.co.jp>

* re.c (rb_reg_clone): should initialize member fields.

Fri Jun 16 22:49:34 2000 Yukihiro Matsumoto <matz@netlab.co.jp>

* io.c (rb_io_rewind): set lineno to zero.

Fri Jun 16 22:47:47 2000 Minero Aoki <aamine@dp.u-netsurf.ne.jp>

* lib/net/protocol.rb, smtp.rb, pop.rb, http.rb: 1.1.23.
Expand All @@ -21,6 +53,16 @@ Fri Jun 16 21:23:59 2000 WATANABE Hirofumi <eban@os.rim.or.jp>

* eval.c: define pause() if missing.

Fri Jun 16 18:41:58 2000 Koji Arai <JCA02266@nifty.ne.jp>

* process.c (proc_setsid): BSD-style setpgrp() don't return
process group ID, but 0 or -1.

Fri Jun 16 16:23:35 2000 Koji Arai <JCA02266@nifty.ne.jp>

* file.c (rb_stat_inspect): gives detailed information;
compatibility with ruby-1.4.x.

Fri Jun 16 05:18:45 2000 Yasuhiro Fukuma <yasuf@bsdclub.org>

* configure.in: FreeBSD: do not link dummy libxpg4 which was
Expand Down
1 change: 1 addition & 0 deletions ToDo
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ Hacking Interpreter
* performance tune for in-block (dynamic) local variables.
* generational GC ?
* give warnings to assign magic variables.
* export rb_io_{addstr,printf,puts,print}

Standard Libraries

Expand Down
4 changes: 2 additions & 2 deletions configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -219,10 +219,10 @@ AC_REPLACE_FUNCS(dup2 memmove mkdir strcasecmp strncasecmp strerror strftime\
strchr strstr strtoul strdup crypt flock vsnprintf\
isinf isnan finite)
AC_CHECK_FUNCS(fmod killpg drand48 random wait4 waitpid syscall getcwd\
truncate chsize times utimes fcntl lockf setitimer\
truncate chsize times utimes fcntl lockf setitimer pause\
setruid seteuid setreuid setrgid setegid setregid\
getpgrp setpgrp getpgid setpgid getgroups getpriority\
dlopen sigprocmask sigaction _setjmp setsid getrlimit pause)
dlopen sigprocmask sigaction _setjmp setsid getrlimit)
AC_STRUCT_TIMEZONE
AC_CACHE_CHECK(for external int daylight, rb_cv_have_daylight,
[AC_TRY_LINK([#include <time.h>
Expand Down
Loading

0 comments on commit b8148f4

Please sign in to comment.