Browse Source

* renamed loadunit_int -> loadunit

peter 26 years ago
parent
commit
1a4dad3029
2 changed files with 11 additions and 7 deletions
  1. 5 3
      compiler/ppu.pas
  2. 6 4
      compiler/symppu.inc

+ 5 - 3
compiler/ppu.pas

@@ -51,8 +51,7 @@ const
   {general}
   {general}
   ibmodulename     = 1;
   ibmodulename     = 1;
   ibsourcefiles    = 2;
   ibsourcefiles    = 2;
-  ibloadunit_int   = 3;
-  ibloadunit_imp   = 4;
+  ibloadunit       = 3;
   ibinitunit       = 5;
   ibinitunit       = 5;
   iblinkofiles     = 6;
   iblinkofiles     = 6;
   iblinksharedlibs = 7;
   iblinksharedlibs = 7;
@@ -796,7 +795,10 @@ end;
 end.
 end.
 {
 {
   $Log$
   $Log$
-  Revision 1.24  1999-02-22 13:07:00  pierre
+  Revision 1.25  1999-03-02 13:49:18  peter
+    * renamed loadunit_int -> loadunit
+
+  Revision 1.24  1999/02/22 13:07:00  pierre
     + -b and -bl options work !
     + -b and -bl options work !
     + cs_local_browser ($L+) is disabled if cs_browser ($Y+)
     + cs_local_browser ($L+) is disabled if cs_browser ($Y+)
       is not enabled when quitting global section
       is not enabled when quitting global section

+ 6 - 4
compiler/symppu.inc

@@ -175,7 +175,7 @@
            current_ppu^.putbyte(byte(hp^.in_interface));
            current_ppu^.putbyte(byte(hp^.in_interface));
            hp:=pused_unit(hp^.next);
            hp:=pused_unit(hp^.next);
          end;
          end;
-        current_ppu^.writeentry(ibloadunit_int);
+        current_ppu^.writeentry(ibloadunit);
       end;
       end;
 
 
 
 
@@ -432,13 +432,12 @@
          repeat
          repeat
            b:=current_ppu^.readentry;
            b:=current_ppu^.readentry;
            case b of
            case b of
-            { ibinitunit : usedunits^.insert(readstring); }
             ibmodulename : begin
             ibmodulename : begin
                              stringdispose(current_module^.modulename);
                              stringdispose(current_module^.modulename);
                              current_module^.modulename:=stringdup(current_ppu^.getstring);
                              current_module^.modulename:=stringdup(current_ppu^.getstring);
                            end;
                            end;
            ibsourcefiles : readsourcefiles;
            ibsourcefiles : readsourcefiles;
-          ibloadunit_int : readloadunit;
+              ibloadunit : readloadunit;
         iblinksharedlibs : readcontainer(current_module^.LinkSharedLibs);
         iblinksharedlibs : readcontainer(current_module^.LinkSharedLibs);
         iblinkstaticlibs : readcontainer(current_module^.LinkStaticLibs);
         iblinkstaticlibs : readcontainer(current_module^.LinkStaticLibs);
          iblinkunitfiles : readcontainer(current_module^.LinkUnitFiles);
          iblinkunitfiles : readcontainer(current_module^.LinkUnitFiles);
@@ -452,7 +451,10 @@
 
 
 {
 {
   $Log$
   $Log$
-  Revision 1.33  1999-02-23 18:29:25  pierre
+  Revision 1.34  1999-03-02 13:49:19  peter
+    * renamed loadunit_int -> loadunit
+
+  Revision 1.33  1999/02/23 18:29:25  pierre
     * win32 compilation error fix
     * win32 compilation error fix
     + some work for local browser (not cl=omplete yet)
     + some work for local browser (not cl=omplete yet)