Re: Emacs + Maxima problem



Andreas Schwarz <usenet@andreas-s.net> writes:

> I downloaded the files from
> http://cvs.sourceforge.net/viewcvs.py/maxima/maxima/interfaces/emacs/emaxima/
> and replaced my old maxim .el files, but how do I tell emacs to
> recompile the .elc-files?

>From within emacs, do

M-x byte-compile-file

three times, once for each maxima .el file (you'll be prompted for the
file name), or from the command line,

emacs -batch -q -no-site-file --eval="(add-to-list 'load-path \".\")" \
      -f batch-byte-compile maxima-font-lock.el          
emacs -batch -q -no-site-file --eval="(add-to-list 'load-path \".\")" \
      -f batch-byte-compile maxima.el
emacs -batch -q -no-site-file --eval="(add-to-list 'load-path \".\")" \
      -f batch-byte-compile emaxima.el

Either of these should work.

Jay