home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
texinfo-3.7-src.tgz
/
tar.out
/
fsf
/
texinfo
/
emacs
/
elisp-comp
< prev
next >
Wrap
Lisp/Scheme
|
1996-09-28
|
291b
|
9 lines
#!/bin/sh
#Amiga-Local: Emacs 18.XX doesn't yet know about unix style
#paths on the Amiga, so we have to use AmigaOS style names.
#setpath=/tmp/elc.$$
setpath=tmp:elc.$$
echo "(setq load-path (cons nil load-path))" > $setpath
emacs -batch -l $setpath -f batch-byte-compile $*
rm -f $setpath