| Commit message (Expand) | Author | Age | Files | Lines |
* | * io.c (rb_open_file): should check NUL in path. | matz | 2008-01-28 | 1 | -15/+15 |
* | * include/ruby/oniguruma.h: precise mbclen API redesigned to avoid | akr | 2008-01-27 | 1 | -3/+4 |
* | * io.c (rb_io_getline_fast): don't care ASCII incompatible encoding. | akr | 2008-01-25 | 1 | -15/+18 |
* | * io.c (rb_io_getline_fast): the end point of left_char_head() | matz | 2008-01-24 | 1 | -1/+3 |
* | * string.c (rb_str_each_line): use memchr(3) for faster newline | matz | 2008-01-23 | 1 | -29/+51 |
* | * io.c (Init_IO): stdin/stdout may not be duplex. | matz | 2008-01-17 | 1 | -1/+0 |
* | * io.c (io_fwrite): always flush IO on tty, even without newlines. | matz | 2008-01-17 | 1 | -1/+1 |
* | * io.c (rb_io_check_readable): flush tied write IO too. | nobu | 2008-01-17 | 1 | -0/+6 |
* | * io.c (pipe_open, rb_io_s_popen): clear temporary object to release | nobu | 2008-01-16 | 1 | -0/+2 |
* | * load.c (rb_feature_p): get rid of unlimited alloca. | nobu | 2008-01-16 | 1 | -3/+4 |
* | * file.c (sys_fail2): get rid of unlimited alloca. | nobu | 2008-01-16 | 1 | -16/+28 |
* | * io.c (appendline): specifying limit should not generate broken | matz | 2008-01-14 | 1 | -0/+12 |
* | io.c (io_encoding_set): typo fixed | matz | 2008-01-10 | 1 | -1/+1 |
* | * io.c (io_encoding_set): handle nil for v1. | matz | 2008-01-10 | 1 | -4/+9 |
* | * io.c (io_encoding_set): IO.pipe("euc-jp", nil) should work as | matz | 2008-01-10 | 1 | -0/+1 |
* | * io.c (rb_io_binmode): should not alter encoding. [ruby-dev:32918] | matz | 2008-01-09 | 1 | -9/+2 |
* | * $Date$ keyword removed to avoid inclusion of locale dependent | akr | 2008-01-06 | 1 | -1/+0 |
* | update rdoc. | akr | 2008-01-05 | 1 | -29/+39 |
* | * io.c (io_ungetc): move data in buffer if it is required to store the | akr | 2008-01-03 | 1 | -1/+7 |
* | * io.c (fptr_finalize): clear errno first. [ruby-talk:284492] | nobu | 2008-01-03 | 1 | -0/+1 |
* | * io.c (rb_io_mode_enc): encoding spec is not allowed in binary mode. | nobu | 2008-01-01 | 1 | -0/+3 |
* | comment modified. | akr | 2007-12-29 | 1 | -1/+1 |
* | * io.c (io_fflush): don't retry when wbuf modified by other threads. | akr | 2007-12-29 | 1 | -8/+2 |
* | * io.c (io_unread): fix typo. | usa | 2007-12-28 | 1 | -2/+1 |
* | * io.c (io_unread): adhoc workaround for non-binary mode of some DOSish | usa | 2007-12-28 | 1 | -0/+12 |
* | * io.c (io_fflush): checks wbuf modification by other threads. | akr | 2007-12-27 | 1 | -8/+14 |
* | * io.c (io_fflush): check closed fptr after rb_write_internal to avoid | akr | 2007-12-26 | 1 | -1/+2 |
* | * io.c (appendline): move RS comparison to rb_io_getline_1(). | matz | 2007-12-25 | 1 | -28/+17 |
* | * io.c (rb_io_external_encoding): should return nil for | matz | 2007-12-25 | 1 | -0/+6 |
* | * io.c (appendline): initialize rslen to 1 if rsptr is 0. | akr | 2007-12-25 | 1 | -0/+3 |
* | * io.c (io_encoding_set): missing return type. | nobu | 2007-12-25 | 1 | -1/+3 |
* | * io.c (rb_io_s_pipe): now takes up to two arguments. allow its | matz | 2007-12-24 | 1 | -22/+83 |
* | * include/ruby/encoding.h (rb_enc_left_char_head): new utility macro. | matz | 2007-12-24 | 1 | -25/+54 |
* | * io.c (appendline): should do multibyte aware RS search. | matz | 2007-12-23 | 1 | -6/+16 |
* | * io.c (io_enc_str): should preserve default_external encoding. | matz | 2007-12-23 | 1 | -2/+2 |
* | * io.c (prepare_getline_args): convert RS to external encoding. | matz | 2007-12-23 | 1 | -4/+11 |
* | * io.c (rb_io_check_readable): should not fill fptr->enc always. | matz | 2007-12-23 | 1 | -10/+19 |
* | * io.c (rb_io_external_encoding): should return the encoding of | matz | 2007-12-23 | 1 | -1/+4 |
* | * io.c (rb_f_open): documentation update. | matz | 2007-12-23 | 1 | -6/+27 |
* | * io.c (rb_io_s_pipe): allow specifying read-side encoding. | matz | 2007-12-23 | 1 | -20/+33 |
* | * io.c (open_key_args): IO direct methods (foreach, readlines, | matz | 2007-12-23 | 1 | -18/+96 |
* | * io.c (rb_io_s_read): encoding argument reverted. | matz | 2007-12-23 | 1 | -50/+70 |
* | * io.c (rb_io_binmode_m): removed C99ism. | nobu | 2007-12-23 | 1 | -2/+4 |
* | * include/ruby/encoding.h, encoding.c, re.c, io.c, parse.y, numeric.c, | akr | 2007-12-22 | 1 | -2/+2 |
* | * io.c (rb_io_mode_enc): do not set encoding unless explicitly | matz | 2007-12-22 | 1 | -23/+17 |
* | * io.c, io.h: temporary patch to partially implement transcode-on-read and tr... | davidflanagan | 2007-12-22 | 1 | -8/+65 |
* | io.c: fix typo in rdoc comment | davidflanagan | 2007-12-21 | 1 | -1/+1 |
* | * encoding.c (rb_ascii_encoding): renamed from previous | matz | 2007-12-21 | 1 | -1/+1 |
* | * io.c (io_ungetc): avoid buffer relocation, which might cause | matz | 2007-12-21 | 1 | -10/+1 |
* | * io.c: write() should be in blocking region. | ko1 | 2007-12-21 | 1 | -30/+47 |