#!/bin/sh
# $Id: elisp-comp,v 1.1.1.1 1997/04/17 23:28:43 cgd Exp $
# Trivial script to compile the Elisp files.
setpath=${TMPDIR-/tmp}/elc.$$
echo "(setq load-path (cons nil load-path))" > $setpath
emacs -batch -l $setpath -f batch-byte-compile "$@"
rm -f $setpath
