Added comment

git-svn-id: http://picoc.googlecode.com/svn/trunk@86 21eae674-98b7-11dd-bd71-f92a316d2d60
This commit is contained in:
zik.saleeba 2009-02-19 04:55:52 +00:00
parent f45882e7e2
commit 834a6daca6

2
lex.c
View file

@ -182,6 +182,8 @@ unsigned char LexUnEscapeCharacter(const char **From, const char *End)
case 'r': return '\r';
case 't': return '\t';
case 'v': return '\v';
/* case '0': XXX - implement octal character constants */
/* case 'x': XXX - implement hex character constants */
default: return ThisChar;
}
}