]> Shamusworld >> Repos - rmac/blobdiff - listing.c
(c) message in header files and doc mini adjustments.
[rmac] / listing.c
index 68f75b7068b1e2f6deaf55efa0ee0f947d779c3c..f2c61f6325e6438e2611549457c48507e4a7c0d6 100644 (file)
--- a/listing.c
+++ b/listing.c
@@ -1,7 +1,7 @@
 //
-// RMAC - Reboot's Macro Assembler for the Atari Jaguar Console System
+// RMAC - Reboot's Macro Assembler for all Atari computers
 // LISTING.C - Listing Output
-// Copyright (C) 199x Landon Dyer, 2011-2012 Reboot and Friends
+// Copyright (C) 199x Landon Dyer, 2011-2017 Reboot and Friends
 // RMAC derived from MADMAC v1.07 Written by Landon Dyer, 1986
 // Source utilised with the kind permission of Landon Dyer
 //
 // nnnnn           =vvvvvvvv
 
 #include "listing.h"
-#include "version.h"
-#include "token.h"
+#include "error.h"
 #include "procln.h"
 #include "sect.h"
-#include "error.h"
+#include "token.h"
+#include "version.h"
 
 char * list_fname;                                     // Listing filename
 uint8_t subttl[TITLESIZ];                      // Current subtitle
@@ -217,30 +217,30 @@ void ship_ln(const char * ln)
        if (listing <= 0)
                return;
 
-    if (list_pag)
-    {
-        // Notice bottom of page
-        if (nlines >= pagelen - BOT_MAR)
-            eject();
+       if (list_pag)
+       {
+               // Notice bottom of page
+               if (nlines >= pagelen - BOT_MAR)
+                       eject();
 
-        // Print title, boilerplate, and subtitle at top of page
-        if (nlines == 0)
-        {
-            pageno++;
-            println("");
-            date_string(datestr, dos_date());
-            time_string(timestr, dos_time());
-            sprintf(buf,
-                "%-40s%-20s Page %-4d    %s %s        RMAC %01i.%01i.%02i (%s)",
-                title, curfname, pageno, timestr, datestr, MAJOR, MINOR, PATCH,
-                PLATFORM);
-            println(buf);
-            sprintf(buf, "%s", subttl);
-            println(buf);
-            println("");
-            nlines = 4;
-        }
-    }
+               // Print title, boilerplate, and subtitle at top of page
+               if (nlines == 0)
+               {
+                       pageno++;
+                       println("");
+                       date_string(datestr, dos_date());
+                       time_string(timestr, dos_time());
+                       sprintf(buf,
+                               "%-40s%-20s Page %-4d    %s %s        RMAC %01i.%01i.%02i (%s)",
+                               title, curfname, pageno, timestr, datestr, MAJOR, MINOR, PATCH,
+                               PLATFORM);
+                       println(buf);
+                       sprintf(buf, "%s", subttl);
+                       println(buf);
+                       println("");
+                       nlines = 4;
+               }
+       }
 
        println(ln);
        nlines++;
@@ -252,8 +252,6 @@ void ship_ln(const char * ln)
 //
 void InitListing(void)
 {
-       extern VALUE dos_date(), dos_time();
-
        subflag = 0;
        pageno = 0;
        nlines = 0;