diff options
| author | Geoff Voelker | 1995-05-28 02:18:09 +0000 |
|---|---|---|
| committer | Geoff Voelker | 1995-05-28 02:18:09 +0000 |
| commit | 8cb2d3e0cd49664c4c53b8831b7662b6568d8d76 (patch) | |
| tree | da00b9422e28c6d326bdf60ba297808b26c97a7d | |
| parent | 7f0db62c95ecff38d713dc60bc80546e9aea7619 (diff) | |
| download | emacs-8cb2d3e0cd49664c4c53b8831b7662b6568d8d76.tar.gz emacs-8cb2d3e0cd49664c4c53b8831b7662b6568d8d76.zip | |
Add carriage returns; necessary for batch files on Win95
| -rwxr-xr-x | nt/ebuild.bat | 2 | ||||
| -rwxr-xr-x | nt/emacs.bat | 88 | ||||
| -rwxr-xr-x | nt/fast-install.bat | 2 | ||||
| -rwxr-xr-x | nt/install.bat | 2 |
4 files changed, 47 insertions, 47 deletions
diff --git a/nt/ebuild.bat b/nt/ebuild.bat index 6b5247cf2cc..32cea5af9fa 100755 --- a/nt/ebuild.bat +++ b/nt/ebuild.bat | |||
| @@ -1 +1 @@ | |||
| nmake -f makefile.nt all | nmake -f makefile.nt all | ||
diff --git a/nt/emacs.bat b/nt/emacs.bat index 5c67fbca521..14e4893d6df 100755 --- a/nt/emacs.bat +++ b/nt/emacs.bat | |||
| @@ -1,44 +1,44 @@ | |||
| 1 | @echo off | 1 | @echo off |
| 2 | 2 | ||
| 3 | REM Change this to the directory into which you installed Emacs: | 3 | REM Change this to the directory into which you installed Emacs: |
| 4 | set emacs_path=C:\emacs | 4 | set emacs_path=C:\emacs |
| 5 | 5 | ||
| 6 | REM | 6 | REM |
| 7 | REM You shouldn't have to change any of the below. | 7 | REM You shouldn't have to change any of the below. |
| 8 | REM | 8 | REM |
| 9 | 9 | ||
| 10 | REM Set OS specific values. | 10 | REM Set OS specific values. |
| 11 | set ARCH_SAVE=%PROCESSOR_ARCHITECTURE% | 11 | set ARCH_SAVE=%PROCESSOR_ARCHITECTURE% |
| 12 | set PROCESSOR_ARCHITECTURE= | 12 | set PROCESSOR_ARCHITECTURE= |
| 13 | if "%ARCH_SAVE%" == "%PROCESSOR_ARCHITECTURE%" goto win95 | 13 | if "%ARCH_SAVE%" == "%PROCESSOR_ARCHITECTURE%" goto win95 |
| 14 | set PROCESSOR_ARCHITECTURE=%ARCH_SAVE% | 14 | set PROCESSOR_ARCHITECTURE=%ARCH_SAVE% |
| 15 | set SHELL=cmd | 15 | set SHELL=cmd |
| 16 | goto next | 16 | goto next |
| 17 | 17 | ||
| 18 | :win95 | 18 | :win95 |
| 19 | set SHELL=command | 19 | set SHELL=command |
| 20 | 20 | ||
| 21 | :next | 21 | :next |
| 22 | 22 | ||
| 23 | set EMACSLOADPATH=%emacs_path%\lisp | 23 | set EMACSLOADPATH=%emacs_path%\lisp |
| 24 | set EMACSDATA=%emacs_path%\etc | 24 | set EMACSDATA=%emacs_path%\etc |
| 25 | set EMACSPATH=%emacs_path%\bin | 25 | set EMACSPATH=%emacs_path%\bin |
| 26 | set EMACSLOCKDIR=%emacs_path%\lock | 26 | set EMACSLOCKDIR=%emacs_path%\lock |
| 27 | set INFOPATH=%emacs_path%\info | 27 | set INFOPATH=%emacs_path%\info |
| 28 | set EMACSDOC=%emacs_path%\etc | 28 | set EMACSDOC=%emacs_path%\etc |
| 29 | set TERM=CMD | 29 | set TERM=CMD |
| 30 | 30 | ||
| 31 | REM The variable HOME is used to find the startup file, ~\_emacs. Ideally, | 31 | REM The variable HOME is used to find the startup file, ~\_emacs. Ideally, |
| 32 | REM this will not be set in this file but should already be set before | 32 | REM this will not be set in this file but should already be set before |
| 33 | REM this file is invoked. If HOME is not set, use some generic default. | 33 | REM this file is invoked. If HOME is not set, use some generic default. |
| 34 | 34 | ||
| 35 | set HOME_SAVE=%HOME% | 35 | set HOME_SAVE=%HOME% |
| 36 | set HOME_EXISTS=yes | 36 | set HOME_EXISTS=yes |
| 37 | set HOME_DEFAULT=C:\ | 37 | set HOME_DEFAULT=C:\ |
| 38 | set HOME= | 38 | set HOME= |
| 39 | if "%HOME%" == "%HOME_SAVE%" set HOME_EXISTS=no | 39 | if "%HOME%" == "%HOME_SAVE%" set HOME_EXISTS=no |
| 40 | if "%HOME_EXISTS%" == "yes" set HOME=%HOME_SAVE% | 40 | if "%HOME_EXISTS%" == "yes" set HOME=%HOME_SAVE% |
| 41 | if "%HOME_EXISTS%" == "no" set HOME=%HOME_DEFAULT% | 41 | if "%HOME_EXISTS%" == "no" set HOME=%HOME_DEFAULT% |
| 42 | if "%HOME_EXISTS%" == "no" echo HOME is not set! Using %HOME% as a default... | 42 | if "%HOME_EXISTS%" == "no" echo HOME is not set! Using %HOME% as a default... |
| 43 | 43 | ||
| 44 | %emacs_path%\bin\emacs.exe %1 %2 %3 %4 %5 %6 %7 %8 %9 | 44 | %emacs_path%\bin\emacs.exe %1 %2 %3 %4 %5 %6 %7 %8 %9 |
diff --git a/nt/fast-install.bat b/nt/fast-install.bat index 072a59061f7..157c4ab8751 100755 --- a/nt/fast-install.bat +++ b/nt/fast-install.bat | |||
| @@ -1 +1 @@ | |||
| nmake -f makefile.nt fast_install | nmake -f makefile.nt fast_install | ||
diff --git a/nt/install.bat b/nt/install.bat index 551d9aae2c3..997702b34ca 100755 --- a/nt/install.bat +++ b/nt/install.bat | |||
| @@ -1 +1 @@ | |||
| nmake -f makefile.nt install | nmake -f makefile.nt install | ||