aboutsummaryrefslogtreecommitdiff
path: root/texinfo/emacs/elisp-comp
blob: 72b204d68b5213205a3627244f778e3d0e6fe706 (plain)
1
2
3
4
5
6
7
#!/bin/sh
# $Id: elisp-comp,v 1.1 1997/08/21 22:57:57 jason 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