diff options
author | Geoff Voelker <voelker@cs.washington.edu> | 1997-09-03 02:25:42 +0000 |
---|---|---|
committer | Geoff Voelker <voelker@cs.washington.edu> | 1997-09-03 02:25:42 +0000 |
commit | e2a355d15f6b5e8393558fec19740366864d0430 (patch) | |
tree | cbe3d38f6dbe8023d8d89847b7cad0a4ddec8cd6 | |
parent | 54fe18a23f207be28afceb2def349903561ad8b8 (diff) | |
download | emacs-e2a355d15f6b5e8393558fec19740366864d0430.tar.gz |
Remove OS dependent operations.
(INFOPATH): No longer set INFOPATH.
-rw-r--r-- | nt/emacs.bat.in | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/nt/emacs.bat.in b/nt/emacs.bat.in index 2308c98a5f3..6f3fb22f104 100644 --- a/nt/emacs.bat.in +++ b/nt/emacs.bat.in @@ -1,24 +1,14 @@ REM Here begins emacs.bat.in
-REM Set OS specific values.
-set ARCH_SAVE=%PROCESSOR_ARCHITECTURE%
-set PROCESSOR_ARCHITECTURE=
-if "%ARCH_SAVE%" == "%PROCESSOR_ARCHITECTURE%" goto windows95
-set PROCESSOR_ARCHITECTURE=%ARCH_SAVE%
-set SHELL=cmd
-goto next
+REM Use new proxy shell by default.
+set SHELL=%emacs_dir%\bin\cmdproxy.exe
-:windows95
-set SHELL=command
-
-:next
-
-set EMACSLOADPATH=%emacs_dir%\lisp;%emacs_dir%\site-lisp
+set EMACSLOADPATH=%emacs_dir%\site-lisp;%emacs_dir%\lisp
set EMACSDATA=%emacs_dir%\etc
set EMACSPATH=%emacs_dir%\bin
set EMACSLOCKDIR=%emacs_dir%\lock
-set INFOPATH=%emacs_dir%\info
+REM set INFOPATH=%emacs_dir%\info
set EMACSDOC=%emacs_dir%\etc
set TERM=CMD
|