* Reverted removal of 'ISO8859-1' encoding because it is still used in fcl-registry.

git-svn-id: trunk@14209 -
This commit is contained in:
sergei 2009-11-18 11:42:35 +00:00
parent 791c165af9
commit 968338c428

View File

@ -642,7 +642,10 @@ begin
SameText(AEncoding, 'l1') or
SameText(AEncoding, 'IBM819') or
SameText(AEncoding, 'CP819') or
SameText(AEncoding, 'csISOLatin1');
SameText(AEncoding, 'csISOLatin1') or
// This one is not in character-sets.txt, but was used in FPC documentation,
// and still being used in fcl-registry package
SameText(AEncoding, 'ISO8859-1');
end;
procedure BufAllocate(var ABuffer: TWideCharBuf; ALength: Integer);