aboutsummaryrefslogtreecommitdiffstats
path: root/io.c
Commit message (Expand)AuthorAgeFilesLines
* * eval.c (load_dyna): clear ruby_errinfo. (ruby-bugs-ja PR#409)matz2003-03-201-9/+9
* * io.c (prep_stdio): set binmode only if the file descriptoreban2003-03-121-2/+4
* * io.c (rb_io_popen): do not call rb_io_close() directly, callmatz2003-03-041-18/+14
* * parse.y (arg): parse 'lhs = a rescue b' as 'lhs=(a rescue b)'.matz2003-03-031-2/+4
* * eval.c (rb_call0): should not report uninitialized warning bymatz2003-02-181-0/+1
* * io.c (prep_stdio, Init_io): always set binmode on Cygwin.eban2003-02-151-0/+17
* * io.c (rb_file_sysopen): rb_file_sysopen_internal() needs foureban2003-02-091-1/+1
* * array.c (rb_ary_equal): a == b is true when b is non T_ARRAYmatz2003-02-041-3/+4
* * variable.c (rb_obj_classname): new function.matz2003-01-311-2/+2
* Updated Copyrights of Matz to 2003.michal2003-01-161-1/+1
* * io.c (next_argv): not always set binmode.nobu2003-01-131-1/+1
* * io.c (next_argv): inherit binmode from $defout.eban2003-01-121-0/+7
* * configure.in (RUBY_CHECK_IO_NEED): added more tests.nobu2003-01-101-1/+5
* adjust indentationnobu2003-01-091-3/+3
* * configure.in (RUBY_CHECK_IO_NEED): check whether fseek() andnobu2003-01-091-16/+12
* * hash.c (env_clear): new Hash compatible method.matz2003-01-071-0/+3
* * array.c (ary_alloc), dir.c (dir_s_alloc), eval.c (thgroup_s_alloc),usa2002-12-211-0/+1
* * io.c (rb_io_fwrite): separated from io_write().nobu2002-12-201-23/+33
* * parse.y (do_block): split "do" block and tLBRACE_ARG block.matz2002-12-201-23/+19
* * numeric.c (num_step): use DBL_EPSILON.matz2002-12-191-1/+1
* * configure.in, defines.h, dir.c, dir.h, dln.c, error.c,uema22002-12-151-11/+11
* * io.c (io_read): takes optional second argument to specify amatz2002-12-111-14/+39
* * sprintf.c (rb_f_sprintf): preceding ".." for negative numbersmatz2002-12-101-7/+7
* WinCE patch mergedmatz2002-12-021-9/+9
* * eval.c, file.c, gc.c, io.c, object.c, ruby.c, ruby.h, struct.c,knu2002-10-291-1/+1
* * djgpp/*: sync with the latest.eban2002-10-271-0/+6
* * gc.c (gc_sweep): also adjust heaps_limits when free unused heapnobu2002-10-091-8/+19
* * io.c (io_write): must check returned value from fwrite() beforenobu2002-10-081-6/+4
* * configure.in (RUBY_CHECK_IO_NEED_FLUSH): check whether fflush()nobu2002-10-021-9/+43
* * io.c (rb_io_wait_readable): handle retryable errors.nobu2002-10-021-48/+57
* * io.c (rb_io_inspect): not need to raise IOError for closed stream. [ruby-t...nobu2002-09-301-2/+2
* * io.c (appendline): forget to terminate with nul.matz2002-09-251-0/+1
* move struct timeval to missing.hmichal2002-09-171-11/+0
* * io.c: add parameter prototype.aamine2002-09-161-1/+1
* retry on EINTR, ERESTART and EWOULDBLOCK. [ruby-dev:17855], [ruby-dev:17878]...nobu2002-09-111-21/+86
* * io.c (rb_io_puts): RSTRING(line)->ptr might be NULL.aamine2002-09-061-1/+2
* * variable.c (rb_copy_generic_ivar): remove old generic instancematz2002-09-031-0/+2
* read_all ftello (instead ftell) (ruby-core:392)michal2002-09-021-1/+1
* * io.c (read_all): should use off_t instead of long.eban2002-08-291-1/+1
* * io.c (appendline): data was lost when raw mode.nobu2002-08-281-3/+15
* adjust indetnobu2002-08-281-1/+1
* Int vs Long cleanup #3 (ruby-core:352)michal2002-08-281-4/+3
* * file.c (rb_find_file): $LOAD_PATH must not be empty.matz2002-08-271-4/+6
* *.c: Int vs Long cleanupmichal2002-08-211-16/+18
* * eval.c (rb_thread_cleanup): should not modify the globalmatz2002-08-211-4/+3
* * replace of check EPIPE error(in getc()) rutine on bcc32.H_Konishi2002-08-201-3/+0
* * io.c (rb_io_putc): output via rb_io_write().matz2002-08-201-18/+4
* * io.c (NOFILE): define NOFILE as 64 if not defined.eban2002-08-161-1/+3
* * io.c (rb_io_fread): renamed from io_fread and made extern.nobu2002-08-161-4/+4
* * io.c (pipe_finalize, pipe_popen): two-way pipe support for win32.usa2002-06-281-3/+37