diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-10-15 15:15:45 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-10-15 15:15:45 +0000 |
| commit | 7d80fb90ec405ba52fa9749721d0f8bcd08b070e (patch) | |
| tree | 44db4dd66493151443c6375945cae62edb2ca0c2 /parse.y | |
| parent | 08fa3c2e73cf7b361a5dbb826bf31b025e2820a0 (diff) | |
| download | ruby-7d80fb90ec405ba52fa9749721d0f8bcd08b070e.tar.gz ruby-7d80fb90ec405ba52fa9749721d0f8bcd08b070e.tar.xz ruby-7d80fb90ec405ba52fa9749721d0f8bcd08b070e.zip | |
* parse.y (yylex): disallow alpha-numeric and mbchar for
terminator of %string.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1785 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
| -rw-r--r-- | parse.y | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -3528,6 +3528,10 @@ yylex() } else { term = nextc(); + if (ISALNUM(term) || ismbchar(term)) { + yyerror("unknown type of %string"); + return 0; + } } if (c == -1 || term == -1) { rb_compile_error("unterminated quoted string meets end of file"); |
