home *** CD-ROM | disk | FTP | other *** search
- ##############################################################################
- # Preprocessor which filters the Hershey OC files for use with the TPHersh
- # unit.
- #
- # Basically, all this program does is to filter out all embedded newlines
- # in the definition of a Hershey glyph.
- ##############################################################################
- while(<>) {
- if (/(.....)(...)/) {
- $a1=$1;
- $a2=$2;
- if (($a1=~ /^\s*\d+$/) && ($a2=~ /^\s*\d+$/) && ($. > 1) )
- { print "\n"; }
- }
- chop;
- print;
- }
-
-
-