mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-11 16:48:12 +02:00
* characters <= 127, not just < 127, can be concatenated to an
ansistring without conversion git-svn-id: trunk@9395 -
This commit is contained in:
parent
a180fdcc74
commit
02c714aec1
@ -315,7 +315,7 @@ var
|
||||
begin
|
||||
{ we know that s is unique -> avoid uniquestring calls}
|
||||
p:=@s[index];
|
||||
if (nc<$7f) then
|
||||
if (nc<=127) then
|
||||
ConcatCharToAnsiStr(char(nc),s,index)
|
||||
else
|
||||
begin
|
||||
|
Loading…
Reference in New Issue
Block a user