mirror of
https://frontier.innolan.net/rainlance/amiga-tz.git
synced 2025-11-20 00:40:28 +00:00
Remove the SCCS keyword '%W%' from all files. Mostly this just remove comments. Remove trailing white space, too. * Makefile (TZCODE_VERSION): New macro. (version.h): New rule. (tzselect): Interpolate TZCODE_VERSION. (clean): Remove version.h. (zdump.o, zic.o): Depend on version.h. * asctime.c, date.c, difftime.c, ialloc.c, localtime.c, scheck.c: * strftime.c, zdump.c, zic.c: Remove elsieid. * private.h: Remove privatehid. * tzfile.h: Remove tzfilehid. * tzselect.h (TZCODE_VERSION): Rename from VERSION. * zdump.c, zic.c: Include "version.h", and use TZCODE_VERSION instead of elsieid.
32 lines
483 B
Bash
32 lines
483 B
Bash
#! /bin/sh
|
|
|
|
# <pre>
|
|
# This file is in the public domain, so clarified as of
|
|
# 2009-05-17 by Arthur David Olson.
|
|
|
|
# Tell groff not to emit SGR escape sequences (ANSI color escapes).
|
|
GROFF_NO_SGR=1
|
|
export GROFF_NO_SGR
|
|
|
|
echo ".am TH
|
|
.hy 0
|
|
.na
|
|
..
|
|
.rm }H
|
|
.rm }F" | nroff -man - ${1+"$@"} | perl -ne '
|
|
chomp;
|
|
s/.\010//g;
|
|
s/\s*$//;
|
|
if (/^$/) {
|
|
$sawblank = 1;
|
|
next;
|
|
} else {
|
|
if ($sawblank && $didprint) {
|
|
print "\n";
|
|
$sawblank = 0;
|
|
}
|
|
print "$_\n";
|
|
$didprint = 1;
|
|
}
|
|
'
|