diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-05-16 09:05:54 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-05-16 09:05:54 +0000 |
| commit | db52e5b5ecd6a47d2be539030686ca92d2b2c417 (patch) | |
| tree | fba985cc67803c80f7761462f79cf988cbf6507b /io.c | |
| parent | 200f5e76a2410b848f1ab8c145e96aded6ef4455 (diff) | |
| download | ruby-db52e5b5ecd6a47d2be539030686ca92d2b2c417.tar.gz ruby-db52e5b5ecd6a47d2be539030686ca92d2b2c417.tar.xz ruby-db52e5b5ecd6a47d2be539030686ca92d2b2c417.zip | |
* array.c (rb_ary_and): should not push frozen key string.
* array.c (rb_ary_or): ditto.
* eval.c (rb_thread_schedule): should save context before raising
deadlock, saved context for current thread might be obsolete.
* time.c (make_time_t): non DST timezone shift supported (hopefully).
* time.c (make_time_t): strict range detection for negative time_t.
* signal.c: SIGINFO added.
* eval.c (rb_ensure): should not SEGV when prot_tag is NULL.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1399 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
| -rw-r--r-- | io.c | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -344,8 +344,6 @@ rb_io_seek_m(argc, argv, io) { VALUE offset, ptrname; int whence; - OpenFile *fptr; - long pos; rb_scan_args(argc, argv, "11", &offset, &ptrname); if (argc == 1) whence = SEEK_SET; @@ -1959,7 +1957,6 @@ static VALUE rb_io_clone(io) VALUE io; { - VALUE klass; OpenFile *fptr, *orig; int fd; char *mode; @@ -3082,7 +3079,7 @@ rb_io_s_pipe() { #ifndef __human68k__ int pipes[2]; - VALUE r, w, ary; + VALUE r, w; #ifdef NT if (_pipe(pipes, 1024, O_BINARY) == -1) |
