home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / gnu / lucid / help-lucid-emacs / text0010.txt < prev    next >
Encoding:
Text File  |  1993-07-14  |  916 b   |  27 lines

  1.  
  2.  
  3. why do`nt you use the -q -l command line arguments. I use them to load
  4. the correct .emacs file. here are two simple shell scripts I use. One
  5. loads gnu emacs, the other loads lucid
  6.  
  7. /////////////////////////////// 
  8. #!/bin/csh -f
  9. #start lucid emacs
  10.  
  11. setenv EMACSLOADPATH "/doe/clover/elisp:/home/andy/gnuEmacsLib/"
  12.  
  13. #this is steves 19.5 version
  14. /doe/public/gnu/bin/lemacs -geometry '81x64+275+5' -q -l /home/andy/.emacs.lucid -font '-misc-fixed-medium-r-normal--15-140-75-75-c-90-iso8859-1' -cr red  $* &
  15.  
  16. ///////////////////////////////
  17.  
  18. #!/bin/csh -f
  19. #start gnu emacs
  20.  
  21. setenv EMACSLOADPATH "/doe/clover/elisp:/home/andy/gnuEmacsLib/:/home/andy/gnu/gnus:/doe/public/gnu/emacs/lisp:/doe/public/gnu/emacs/lisp/local"
  22.  
  23. /doe/bin/emacs -q -l /home/andy/.emacs.gnu -fn '-misc-fixed-medium-r-normal--15-140-75-75-c-90-iso8859-1' -cr red -ms blue -w '=81x64-35+5' $* & 
  24.  
  25. //////////////////////////////////////////////////
  26.  
  27.