changeset 512:38ce6428eaa0

Ahem. I broked it. (Fix \n parsing in strings. Thinko.)
author Rob Landley <rob@landley.net>
date Mon, 12 Nov 2007 23:34:23 -0600
parents 374af493d0ac
children 261e021c0fab
files tcc.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/tcc.c	Mon Nov 12 18:47:56 2007 -0600
+++ b/tcc.c	Mon Nov 12 23:34:23 2007 -0600
@@ -2194,7 +2194,7 @@
                 n = c*8+n-'0';
             }
             if (i) goto add_char_nonext;
-            switch(c) {
+            switch(*p) {
             case 'x':
             case 'u':
             case 'U':