mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
ruby.c: paragraph mode by -00
* ruby.c (proc_options): set to paragraph mode, if -00 is given, as well as perl and -R0 option in 0.49. [ruby-core:81987] [Bug #13736] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59970 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
6743bc3751
commit
79e0a19353
2 changed files with 3 additions and 1 deletions
2
ruby.c
2
ruby.c
|
@ -1162,7 +1162,7 @@ proc_options(long argc, char **argv, ruby_cmdline_options_t *opt, int envopt)
|
|||
if (v > 0377)
|
||||
rb_rs = Qnil;
|
||||
else if (v == 0 && numlen >= 2) {
|
||||
rb_rs = rb_str_new2("\n\n");
|
||||
rb_rs = rb_str_new2("");
|
||||
}
|
||||
else {
|
||||
c = v & 0xff;
|
||||
|
|
|
@ -187,6 +187,8 @@ class TestRubyOptions < Test::Unit::TestCase
|
|||
assert_in_out_err(%w(-0e) + ["print gets"], "foo\nbar\0baz", %W(foo bar\0), [])
|
||||
|
||||
assert_in_out_err(%w(-00 -e) + ["p gets, gets"], "foo\nbar\n\nbaz\nzot\n\n\n", %w("foo\nbar\n\n" "baz\nzot\n\n"), [])
|
||||
|
||||
assert_in_out_err(%w(-00 -e) + ["p gets, gets"], "foo\nbar\n\n\n\nbaz\n", %w("foo\nbar\n\n" "baz\n"), [])
|
||||
end
|
||||
|
||||
def test_autosplit
|
||||
|
|
Loading…
Reference in a new issue