1997-08-22 00:57:35 +02:00
|
|
|
#!/bin/sh
|
1998-03-24 19:08:49 +01:00
|
|
|
# $Id: elisp-comp,v 1.1.1.1 1997/08/21 22:57:57 jason Exp $
|
1997-08-22 00:57:35 +02:00
|
|
|
# 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
|