1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

remove semicolon warning. [ruby-dev:29299]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@10758 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2006-08-22 09:39:45 +00:00
parent 0abbcb67d1
commit cfa85982c5
2 changed files with 4 additions and 3 deletions

View file

@ -9,6 +9,10 @@ Sat Aug 19 11:28:08 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
* file.c (rb_file_s_rename): use errno if set properly.
fixed: [ruby-dev:29293]
Sat Aug 19 11:09:23 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
* parse.y (then): remove semicolon warning. [ruby-dev:29299]
Thu Aug 17 19:15:16 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
* file.c (rb_stat_[rRwWxX]): check for super user.

View file

@ -1731,9 +1731,6 @@ primary_value : primary
then : term
| ':'
{
rb_warn("colon will be obsoleted; use semicolon");
}
| kTHEN
| term kTHEN
;