blob: 8f9d92349d2a52c276fc8a8e7bc27dc2badfbe63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#! /bin/sh -vx
# $Id$
# Public domain.
# ensure -K1 does not remove newline after %%BeginFont line.
# Report from T S, 1 Jan 2010 16:32:16.
tst=beginfontk1
./dvips -K1 $srcdir/testdata/$tst.dvi -o || exit 1
grep '^%%BeginFont: /MC1_ArialBold$' $tst.ps || exit 1
exit 0
|