Browse Source

* typo in previous commit open_array -> chararray :(

peter 26 years ago
parent
commit
8a941c2568
1 changed files with 6 additions and 3 deletions
  1. 6 3
      compiler/tcadd.pas

+ 6 - 3
compiler/tcadd.pas

@@ -105,7 +105,7 @@ implementation
             (ld^.deftype=recorddef) or
             (ld^.deftype=recorddef) or
             ((ld^.deftype=arraydef) and
             ((ld^.deftype=arraydef) and
              (not (rd^.deftype in [setdef,orddef])) and
              (not (rd^.deftype in [setdef,orddef])) and
-             (not is_open_array(ld))
+             (not is_chararray(ld))
             ) or
             ) or
             { <> and = are defined for classes }
             { <> and = are defined for classes }
             ((ld^.deftype=objectdef) and
             ((ld^.deftype=objectdef) and
@@ -116,7 +116,7 @@ implementation
             (rd^.deftype=recorddef) or
             (rd^.deftype=recorddef) or
             ((rd^.deftype=arraydef) and
             ((rd^.deftype=arraydef) and
              (not (ld^.deftype in [setdef,orddef])) and
              (not (ld^.deftype in [setdef,orddef])) and
-             (not is_open_array(rd))
+             (not is_chararray(rd))
             ) or
             ) or
             { <> and = are defined for classes }
             { <> and = are defined for classes }
             ((rd^.deftype=objectdef) and
             ((rd^.deftype=objectdef) and
@@ -1135,7 +1135,10 @@ implementation
 end.
 end.
 {
 {
   $Log$
   $Log$
-  Revision 1.46  1999-09-10 15:40:46  peter
+  Revision 1.47  1999-09-13 16:28:05  peter
+    * typo in previous commit open_array -> chararray :(
+
+  Revision 1.46  1999/09/10 15:40:46  peter
     * fixed array check for operators, becuase array can also be a set
     * fixed array check for operators, becuase array can also be a set
 
 
   Revision 1.45  1999/09/08 16:05:29  peter
   Revision 1.45  1999/09/08 16:05:29  peter