#!/bin/sh
if [ "x$1" = "x-n" ]; then
    newfile=1
    shift
fi
tex "$1"
mf '\mode=localfont;' input "$2"
if [ -n "$newfile" ]; then
    tex "$1"
fi
