lazutils: xmlread: preserve whitespace between attributes

git-svn-id: trunk@42167 -
This commit is contained in:
mattias 2013-07-21 08:21:39 +00:00
parent 15044a3da0
commit b0d883f915

View File

@ -1987,7 +1987,7 @@ begin
FSource.NextChar;
if (wc = Delim) and (FSource.FEntity = start) then
Break;
if (wc = #10) or (wc = #9) or (wc = #13) then
if (not FPreserveWhitespace) and (ord(wc) in [9,10,13]) then
wc := #32;
BufAppend(FValue, wc);
end