changeset 415:9071c6e75a4a

Tweak from Axel Liljencrantz to parse unicode escape sequences.
author Rob Landley <rob@landley.net>
date Mon, 22 Jan 2007 13:18:11 -0500
parents 76604d7aeb07
children 1cfaa15e4b84
files tcc.c
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/tcc.c	Sat Dec 02 11:23:17 2006 -0500
+++ b/tcc.c	Mon Jan 22 13:18:11 2007 -0500
@@ -3141,6 +3141,8 @@
                 c = n;
                 goto add_char_nonext;
             case 'x':
+            case 'u':
+            case 'U':
                 p++;
                 n = 0;
                 for(;;) {