Browse Source

* removed unused vars

peter 25 years ago
parent
commit
6f23dbf6c6
1 changed files with 7 additions and 4 deletions
  1. 7 4
      rtl/linux/crt.pp

+ 7 - 4
rtl/linux/crt.pp

@@ -1342,8 +1342,8 @@ Function CrtRead(Var F: TextRec): Integer;
   Read from CRT associated file.
   Read from CRT associated file.
 }
 }
 var
 var
-  c: char;
-  i, CurX, CurY : longint;
+  c : char;
+  i : longint;
 Begin
 Begin
   if isATTY(F.Handle) then
   if isATTY(F.Handle) then
     begin
     begin
@@ -1472,7 +1472,7 @@ End;
 
 
 
 
 const
 const
-  KIOCSOUND = $4B2F;	// start sound generation (0 for off)
+  KIOCSOUND = $4B2F;    // start sound generation (0 for off)
 
 
 Procedure Sound(Hz: Word);
 Procedure Sound(Hz: Word);
 begin
 begin
@@ -1663,7 +1663,10 @@ Begin
 End.
 End.
 {
 {
   $Log$
   $Log$
-  Revision 1.30  2000-06-20 08:52:16  jonas
+  Revision 1.31  2000-06-22 18:37:49  peter
+    * removed unused vars
+
+  Revision 1.30  2000/06/20 08:52:16  jonas
     * crtread didn't set f.bufpos back to 0, so it failed if that wasn't
     * crtread didn't set f.bufpos back to 0, so it failed if that wasn't
       already the case on entry
       already the case on entry
     * crtread now makes sure it doesn't try to read mode characters than
     * crtread now makes sure it doesn't try to read mode characters than