home *** CD-ROM | disk | FTP | other *** search
/ Dream 49 / Amiga_Dream_49.iso / beos / emacs / emacs-19.34-bin / emacs-19 / bin / emacs < prev    next >
Text File  |  1997-09-17  |  339b  |  14 lines

  1. #!/bin/sh
  2.  
  3. EMACS_HOME=`dirname $0`/..
  4. EMACS_DUMP=/boot/apps/GeekGadgets/libexec/emacs/19.34/ppc-beos/emacs.dump
  5.  
  6. if [ ! -f $EMACS_DUMP ] ; then
  7.     pushd $EMACS_HOME/share/emacs/19.34/etc
  8.     $EMACS_HOME/bin/emacs-19.34 -batch -l loadup dump
  9.     mv temacs.dump $EMACS_DUMP
  10.     popd
  11. fi
  12.  
  13. exec $EMACS_HOME/bin/emacs-19.34 -map $EMACS_DUMP $*
  14.