fix \x88
git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@973 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
parent
cfd3683891
commit
3e468eea4e
@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user