xenocara/doc/xorg-docs/specs/rstart/fix.awk
2006-11-29 16:49:19 +00:00

24 lines
217 B
Awk
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#! /bin/awk -f
# $Xorg: fix.awk,v 1.3 2000/08/17 19:42:50 cpqbld Exp $
#
BEGIN {
ignore = 1;
}
# following line starts /^L/
/ / {
print;
ignore = 1;
next;
}
/^$/ {
if(ignore) next;
}
{
ignore = 0;
print;
}