diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-06-01 06:47:32 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-06-01 06:47:32 +0000 |
commit | 353650e6b486482a256250611d73b668f3fa8dbc (patch) | |
tree | 9189cade96efd9e1796dcb21b5b65983e1fe4233 /file.c | |
parent | df2c6aef1e202ff263090009f782324dd74b5417 (diff) | |
download | bundler-353650e6b486482a256250611d73b668f3fa8dbc.tar.gz |
* parse.y (yylex): fixed 'print CGI::bar() {}, "\n"' syntax
breakage, adding new lex_state status. sigh. [new]
* file.c (rb_file_s_unlink): should not allow if $SAFE >= 2.
* range.c (Init_Range): define "to_ary".
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1485 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'file.c')
-rw-r--r-- | file.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1246,6 +1246,7 @@ rb_file_s_unlink(klass, args) { int n; + rb_secure(2); n = apply2files(unlink_internal, args, 0); return INT2FIX(n); } |