X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=listing.c;h=2fcf315c48739d057dbd46ddad1d3cc1acdd9534;hp=68f75b7068b1e2f6deaf55efa0ee0f947d779c3c;hb=26019087571ebcafae571c7d32f485ceb8af8c5d;hpb=6c68569fbfe25f7edf7607615a2db5911584f0ce diff --git a/listing.c b/listing.c index 68f75b7..2fcf315 100644 --- a/listing.c +++ b/listing.c @@ -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(); - - // 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; - } - } + 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; + } + } println(ln); nlines++;