8 lines
264 B
Plaintext
Raw Normal View History

#!/bin/sh
# $Id: elisp-comp,v 1.1 2004/10/28 18:14:08 zooey 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