1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-05 06:28:57 +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:
cuz 2003-06-27 08:10:08 +00:00
parent 309f1f0f88
commit 6766f4a2c1

View File

@ -283,6 +283,8 @@ static int ParseChar (void)
break;
case '0':
case '1':
case '2':
case '3':
/* Octal constant */
i = 0;
C = CurC - '0';