* support 'x1f' and 'X1f' for hex notation in val() (Delphi compatibility,

mantis 8177)

git-svn-id: trunk@6204 -
This commit is contained in:
Jonas Maebe 2007-01-26 18:34:08 +00:00
parent ca4412e09f
commit 6c578f55df

View File

@ -670,7 +670,9 @@ begin
if code<=length(s) then
begin
case s[code] of
'$' : begin
'$',
'X',
'x' : begin
base:=16;
inc(code);
end;