mirror of
https://github.com/ruby/ruby.git
synced 2025-09-15 16:44:01 +02:00
merges r20869 from trunk into ruby_1_9_1.
* ruby.c (process_options): get rid of warning on DOSISH. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_1@20885 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
37a5e02475
commit
d82eb1a48b
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Fri Dec 19 15:51:48 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* ruby.c (process_options): get rid of warning on DOSISH.
|
||||
|
||||
Thu Dec 18 19:31:54 2008 Yuki Sonoda (Yugui) <yugui@yugui.jp>
|
||||
|
||||
* lib/irb/init.rb (IRB.opt_parse): (M17N) adds -U and -E as command
|
||||
|
|
2
ruby.c
2
ruby.c
|
@ -1259,7 +1259,7 @@ process_options(VALUE arg)
|
|||
opt->script_name = rb_str_new_cstr(opt->script);
|
||||
opt->script = RSTRING_PTR(opt->script_name);
|
||||
#if defined DOSISH || defined __CYGWIN__
|
||||
translate_char(opt->script, '\\', '/');
|
||||
translate_char(RSTRING_PTR(opt->script_name), '\\', '/');
|
||||
#endif
|
||||
rb_obj_freeze(opt->script_name);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue