summaryrefslogtreecommitdiff
path: root/xc/doc/specs/rstart/fix.awk
blob: b913be1f79343c0e899b99fdc70a43a20925994b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#! /bin/awk -f
# $XConsortium$
#

BEGIN {
	ignore = 1;
}

# following line starts /^L/
//	{
	print;
	ignore = 1;
	next;
}

/^$/ {
	if(ignore) next;
}

{
	ignore = 0;
	print;
}