diff options
author | Jason Rumney <jasonr@gnu.org> | 2001-11-20 22:45:36 +0000 |
---|---|---|
committer | Jason Rumney <jasonr@gnu.org> | 2001-11-20 22:45:36 +0000 |
commit | ecd46a8c9afdf5167ba7d32829a4b05c19623afa (patch) | |
tree | dab33696887c7fe34f6f594296a988627c3225c2 /nt | |
parent | 3bccebd15af837de9e66612ce7078842db37c048 (diff) | |
download | emacs-ecd46a8c9afdf5167ba7d32829a4b05c19623afa.tar.gz |
Removed.
Diffstat (limited to 'nt')
-rw-r--r-- | nt/ChangeLog | 4 | ||||
-rw-r--r-- | nt/TODO | 28 | ||||
-rw-r--r-- | nt/_emacs | 3 | ||||
-rw-r--r-- | nt/debug.bat.in | 31 | ||||
-rw-r--r-- | nt/emacs.bat.in | 28 |
5 files changed, 4 insertions, 90 deletions
diff --git a/nt/ChangeLog b/nt/ChangeLog index 965141b6abb..3a65dacf220 100644 --- a/nt/ChangeLog +++ b/nt/ChangeLog @@ -1,3 +1,7 @@ +2001-11-20 Jason Rumney <jasonr@gnu.org> + + * TODO, _emacs, emacs.bat.in, debug.bat.in: Removed. + 2001-11-17 Jason Rumney <jasonr@gnu.org> * nmake.defs (SYS_LDFLAGS): Add setargv.obj for wildcard diff --git a/nt/TODO b/nt/TODO deleted file mode 100644 index 8cf30f81ea3..00000000000 --- a/nt/TODO +++ /dev/null @@ -1,28 +0,0 @@ - -This is a list of known problems to date with the Windows NT/95 port of -GNU Emacs. - -* Handle wildcards in ls-lisp (e.g., C-x d *.c). - -* Interactive subprocess output is buffered in jerky - -* Presently, C:\foo\bar and C:/foo/bar bring up two buffers on the same file. - Solve this by adding a switch that canonicalizes path separators - (e.g., make them all / or all \)? - -* call-process-region: Another tricky situation with binary and text modes. - An example by dsrosing@reston.ingr.com: use crypt++ to load compressed - data into a buffer, edit the buffer, save the data back out. (Also - need to propagate the "/C" switch change sent the shell in crypt++.el - back to the author.) - -* Dired uses ls-lisp, which reports all files as being owned by the - current user. Need to dig through the security descriptor to extract - the owner of the file (and the group?) using LookupAccountSid. - -* Integrate the build for NT into the GNU config process once - a decent shell becomes freely available - -* Integrate networking. - -* Fix Win95 subprocesses. diff --git a/nt/_emacs b/nt/_emacs deleted file mode 100644 index 76ef4e58c34..00000000000 --- a/nt/_emacs +++ /dev/null @@ -1,3 +0,0 @@ -;;; This is the user emacs startup file (.emacs in Unix land). - -(put 'eval-expression 'disabled nil) diff --git a/nt/debug.bat.in b/nt/debug.bat.in deleted file mode 100644 index a047640027a..00000000000 --- a/nt/debug.bat.in +++ /dev/null @@ -1,31 +0,0 @@ -
-REM Here begins debug.bat.in
-
-REM Set OS specific values.
-REM none needed
-
-REM Use new proxy shell by default.
-set SHELL=%emacs_dir%\bin\cmdproxy.exe
-
-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
-set EMACSDOC=%emacs_dir%\etc
-set TERM=CMD
-
-REM The variable HOME is used to find the startup file, ~\_emacs. Ideally,
-REM this will not be set in this file but should already be set before
-REM this file is invoked. If HOME is not set, use some generic default.
-
-set HOME_SAVE=%HOME%
-set HOME_EXISTS=yes
-set HOME_DEFAULT=C:\
-set HOME=
-if "%HOME%" == "%HOME_SAVE%" set HOME_EXISTS=no
-if "%HOME_EXISTS%" == "yes" set HOME=%HOME_SAVE%
-if "%HOME_EXISTS%" == "no" set HOME=%HOME_DEFAULT%
-if "%HOME_EXISTS%" == "no" echo HOME is not set! Using %HOME% as a default...
-
-start msdev -nologo %emacs_dir%\bin\emacs.exe %1 %2 %3 %4 %5 %6 %7 %8 %9
diff --git a/nt/emacs.bat.in b/nt/emacs.bat.in deleted file mode 100644 index 98ef6728d54..00000000000 --- a/nt/emacs.bat.in +++ /dev/null @@ -1,28 +0,0 @@ -
-REM Here begins emacs.bat.in
-
-REM Use new proxy shell by default.
-set SHELL=%emacs_dir%\bin\cmdproxy.exe
-
-set EMACSLOADPATH=%emacs_dir%\site-lisp;%emacs_dir%\lisp;%emacs_dir%\leim
-set EMACSDATA=%emacs_dir%\etc
-set EMACSPATH=%emacs_dir%\bin
-set EMACSLOCKDIR=%emacs_dir%\lock
-REM set INFOPATH=%emacs_dir%\info
-set EMACSDOC=%emacs_dir%\etc
-set TERM=CMD
-
-REM The variable HOME is used to find the startup file, ~\_emacs. Ideally,
-REM this will not be set in this file but should already be set before
-REM this file is invoked. If HOME is not set, use some generic default.
-
-set HOME_SAVE=%HOME%
-set HOME_EXISTS=yes
-set HOME_DEFAULT=C:\
-set HOME=
-if "%HOME%" == "%HOME_SAVE%" set HOME_EXISTS=no
-if "%HOME_EXISTS%" == "yes" set HOME=%HOME_SAVE%
-if "%HOME_EXISTS%" == "no" set HOME=%HOME_DEFAULT%
-if "%HOME_EXISTS%" == "no" echo HOME is not set! Using %HOME% as a default...
-
-%emacs_dir%\bin\emacs.exe %1 %2 %3 %4 %5 %6 %7 %8 %9
|