mirror of
https://github.com/cc65/cc65.git
synced 2025-01-27 09:33:42 +00:00
Octal character constants starting with '2' or '3' did not work.
git-svn-id: svn://svn.cc65.org/cc65/trunk@2225 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
309f1f0f88
commit
6766f4a2c1
@ -283,6 +283,8 @@ static int ParseChar (void)
|
||||
break;
|
||||
case '0':
|
||||
case '1':
|
||||
case '2':
|
||||
case '3':
|
||||
/* Octal constant */
|
||||
i = 0;
|
||||
C = CurC - '0';
|
||||
|
Loading…
x
Reference in New Issue
Block a user