mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-19 09:59:29 +02:00
* made Index* usage consistent with astrings.inc
This commit is contained in:
parent
d97aa2e973
commit
68e4d5c88a
@ -310,7 +310,7 @@ var
|
||||
begin
|
||||
if p=nil then
|
||||
exit;
|
||||
Size := IndexWord(p^, $7fffffff, 0);
|
||||
Size := IndexWord(p^, -1, 0);
|
||||
Setlength (result,Size);
|
||||
if Size>0 then
|
||||
begin
|
||||
@ -327,7 +327,7 @@ var
|
||||
begin
|
||||
if p=nil then
|
||||
exit;
|
||||
Size := IndexWord(p^, $7fffffff, 0);
|
||||
Size := IndexWord(p^, -1, 0);
|
||||
Setlength (result,Size);
|
||||
if Size>0 then
|
||||
begin
|
||||
@ -993,7 +993,10 @@ end;
|
||||
|
||||
{
|
||||
$Log$
|
||||
Revision 1.31 2003-06-17 19:24:08 jonas
|
||||
Revision 1.32 2003-11-05 15:33:51 florian
|
||||
* made Index* usage consistent with astrings.inc
|
||||
|
||||
Revision 1.31 2003/06/17 19:24:08 jonas
|
||||
* fixed conversion of fpc_*str_unique to compilerproc
|
||||
|
||||
Revision 1.30 2003/06/17 16:38:53 jonas
|
||||
|
Loading…
Reference in New Issue
Block a user