blob: 5bc405cefab98518308a07d4e3f90ff074f5d875 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* FONTTEX EXEC
Note: This REXX exec is used to run the FontTeX driver program.
This exec will prompt the user for a filename if none was entered with
the call to the exec.
*/
Address 'COMMAND';
Trace value 'n'
Parse Upper Arg inFn;
if inFn=' '
then do
say 'Please enter filename of fontinfo file.'
pull inFn .
end
state inFn 'FONTINFO *'
if RC<>0 then do
say inFn 'FONTINFO file not found.'
exit
end
'FONTTEX' inFn
'REBLOCK' inFn 'TFM';
'ERASE' inFn 'PRTFM';
exit
|