home *** CD-ROM | disk | FTP | other *** search
-
-
- why do`nt you use the -q -l command line arguments. I use them to load
- the correct .emacs file. here are two simple shell scripts I use. One
- loads gnu emacs, the other loads lucid
-
- ///////////////////////////////
- #!/bin/csh -f
- #start lucid emacs
-
- setenv EMACSLOADPATH "/doe/clover/elisp:/home/andy/gnuEmacsLib/"
-
- #this is steves 19.5 version
- /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 $* &
-
- ///////////////////////////////
-
- #!/bin/csh -f
- #start gnu emacs
-
- setenv EMACSLOADPATH "/doe/clover/elisp:/home/andy/gnuEmacsLib/:/home/andy/gnu/gnus:/doe/public/gnu/emacs/lisp:/doe/public/gnu/emacs/lisp/local"
-
- /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' $* &
-
- //////////////////////////////////////////////////
-
-