From 3e468eea4e0228d30371949d81754d6626c95e13 Mon Sep 17 00:00:00 2001 From: vsc Date: Mon, 9 Feb 2004 16:46:03 +0000 Subject: [PATCH] fix \x88 git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@973 b08c6af1-5177-4d33-ba66-4b1c6b8b522a --- C/scanner.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C/scanner.c b/C/scanner.c index beb3ef005..50a6f922e 100644 --- a/C/scanner.c +++ b/C/scanner.c @@ -353,7 +353,7 @@ read_quoted_char(int *scan_nextp, int inp_stream, int (*QuotedNxtch)(int)) my_isupper(ch) ? ch - 'A' + 10 : my_islower(ch) ? ch - 'a' +10 : 0); ch = QuotedNxtch(inp_stream); - return so_far + (chtype[ch] == NU ? ch - '0' : + return so_far*16 + (chtype[ch] == NU ? ch - '0' : my_isupper(ch) ? ch - 'A' +10 : my_islower(ch) ? ch - 'a' + 10 : 0); }