* parse.y (yylex): fix typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2648 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
141d0c380f
commit
55a65fd4e9
@ -1,6 +1,10 @@
|
|||||||
|
Thu Jul 18 06:51:24 2002 Minero Aoki <aamine@loveruby.net>
|
||||||
|
|
||||||
|
* parse.y (yylex): fix typo.
|
||||||
|
|
||||||
Mon Jul 15 10:35:35 2002 Minero Aoki <aamine@loveruby.net>
|
Mon Jul 15 10:35:35 2002 Minero Aoki <aamine@loveruby.net>
|
||||||
|
|
||||||
* parse.y (heredoc_identifier): modify typo.
|
* parse.y (heredoc_identifier): fix typo.
|
||||||
|
|
||||||
Sat Jul 13 09:30:04 2002 Nobuyoshi Nakada <nobu.nokada@softhome.net>
|
Sat Jul 13 09:30:04 2002 Nobuyoshi Nakada <nobu.nokada@softhome.net>
|
||||||
|
|
||||||
|
2
parse.y
2
parse.y
@ -3417,7 +3417,7 @@ yylex()
|
|||||||
}
|
}
|
||||||
pushback(c);
|
pushback(c);
|
||||||
if (IS_ARG() && space_seen && !ISSPACE(c)){
|
if (IS_ARG() && space_seen && !ISSPACE(c)){
|
||||||
rb_warning("`&' interpeted as argument prefix");
|
rb_warning("`&' interpreted as argument prefix");
|
||||||
c = tAMPER;
|
c = tAMPER;
|
||||||
}
|
}
|
||||||
else if (lex_state == EXPR_BEG || lex_state == EXPR_MID) {
|
else if (lex_state == EXPR_BEG || lex_state == EXPR_MID) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user