Browse Source

+ fix incorrect comment in insertlistcopy

carl 23 years ago
parent
commit
528d042442
1 changed files with 7 additions and 2 deletions
  1. 7 2
      compiler/cclasses.pas

+ 7 - 2
compiler/cclasses.pas

@@ -87,7 +87,9 @@ interface
           procedure insertList(p : TLinkedList);
           procedure insertList(p : TLinkedList);
           { concats another List at the end and make this List empty }
           { concats another List at the end and make this List empty }
           procedure concatList(p : TLinkedList);
           procedure concatList(p : TLinkedList);
-          { concats another List at the end and makes a copy }
+          { concats another List at the start and makes a copy 
+            the list is ordered in reverse.
+          }
           procedure insertListcopy(p : TLinkedList);
           procedure insertListcopy(p : TLinkedList);
           { concats another List at the end and makes a copy }
           { concats another List at the end and makes a copy }
           procedure concatListcopy(p : TLinkedList);
           procedure concatListcopy(p : TLinkedList);
@@ -1733,7 +1735,10 @@ end;
 end.
 end.
 {
 {
   $Log$
   $Log$
-  Revision 1.15  2002-07-01 18:46:21  peter
+  Revision 1.16  2002-08-09 19:08:53  carl
+    + fix incorrect comment in insertlistcopy
+
+  Revision 1.15  2002/07/01 18:46:21  peter
     * internal linker
     * internal linker
     * reorganized aasm layer
     * reorganized aasm layer