* fix for length(char) in const expressions

This commit is contained in:
pierre 1998-11-05 10:29:34 +00:00
parent cb9c63b467
commit c1b6f90bcf
3 changed files with 16 additions and 5 deletions

View File

@ -126,11 +126,12 @@ begin
end;
{ removed must be internal to be accepted in const expr !! PM
function length(c:char):StrLenInt;
begin
Length:=1;
end;
}
{$ifdef IBM_CHAR_SET}
const
@ -936,7 +937,10 @@ end;
{
$Log$
Revision 1.15 1998-11-04 10:20:50 peter
Revision 1.16 1998-11-05 10:29:34 pierre
* fix for length(char) in const expressions
Revision 1.15 1998/11/04 10:20:50 peter
* ansistring fixes
Revision 1.14 1998/10/11 14:30:19 peter

View File

@ -57,6 +57,7 @@ Function hi(l : Longint) : Word; [INTERNPROC: In_hi_long];
Function chr(b : byte) : Char; [INTERNPROC: In_chr_byte];
Function Length(s : string) : byte; [INTERNPROC: In_Length_string];
Function Length(c : char) : byte; [INTERNPROC: In_Length_string];
Procedure Reset(var f : TypedFile); [INTERNPROC: In_Reset_TypedFile];
Procedure Rewrite(var f : TypedFile); [INTERNPROC: In_Rewrite_TypedFile];
@ -461,7 +462,10 @@ end;
{
$Log$
Revision 1.40 1998-11-04 20:34:02 michael
Revision 1.41 1998-11-05 10:29:36 pierre
* fix for length(char) in const expressions
Revision 1.40 1998/11/04 20:34:02 michael
+ Removed ifdef useansistrings
Revision 1.39 1998/10/12 22:11:28 jonas

View File

@ -198,7 +198,7 @@ Procedure SetLength(var s:shortstring;len:StrLenInt);
{ Char functions to overcome overloading problem with ansistrings }
function copy(c:char;index : StrLenInt;count : StrLenInt): shortstring;
function pos(const substr : shortstring;c:char): StrLenInt;
function length(c:char):StrLenInt;
function length(c:char):byte;
Function upCase(const s:shortstring):shortstring;
Function upCase(c:Char):Char;
@ -430,7 +430,10 @@ const
{
$Log$
Revision 1.39 1998-11-04 20:34:01 michael
Revision 1.40 1998-11-05 10:29:37 pierre
* fix for length(char) in const expressions
Revision 1.39 1998/11/04 20:34:01 michael
+ Removed ifdef useansistrings
Revision 1.38 1998/11/04 10:20:51 peter