CodeTools: Interpret string constants correctly. Issue #29723, patch from Bart.

git-svn-id: trunk@53266 -
This commit is contained in:
juha 2016-10-30 17:54:54 +00:00
parent 149d296da7
commit 8be0b04f08

View File

@ -878,6 +878,7 @@ begin
inc(p);
end else if p^='$' then begin
// hexadecimal
Inc(p);
while IsHexNumberChar[p^] do
inc(p);
end;