diff options
author | Jeremy Evans <[email protected]> | 2022-05-26 12:22:42 -0700 |
---|---|---|
committer | Jeremy Evans <[email protected]> | 2022-07-21 08:13:40 -0700 |
commit | 04f86ad0b5d2fe4711ff300d855228a6aed55f33 (patch) | |
tree | b01789d26e6a7a0a8bbd30a34c874479a7b3a034 /io.c | |
parent | 672925bf14d3466cdcb7c7e4977d5ae8ec093d99 (diff) |
Do not chomp trailing line separator IO#each with nil separator and chomp
nil separator means no sepator, so chomp should not remove a line
separator.
Partially Fixes [Bug #18770]
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/5959
Diffstat (limited to 'io.c')
-rw-r--r-- | io.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -3875,7 +3875,6 @@ rb_io_getline_0(VALUE rs, long limit, int chomp, rb_io_t *fptr) if (NIL_P(rs) && limit < 0) { str = read_all(fptr, 0, Qnil); if (RSTRING_LEN(str) == 0) return Qnil; - if (chomp) rb_str_chomp_string(str, rb_default_rs); } else if (limit == 0) { return rb_enc_str_new(0, 0, io_read_encoding(fptr)); |