diff options
author | Glenn Morris <rgm@gnu.org> | 2009-08-22 21:59:40 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2009-08-22 21:59:40 +0000 |
commit | a337468045409bc0d9179f4cdda010dbab2a5989 (patch) | |
tree | ce85d6ca33e474a2c4acb3e14160c8ff9a9bb9e3 /lisp/ls-lisp.el | |
parent | 3f12e3f4bf054763b6507577e72a55a02302ace7 (diff) | |
download | emacs-a337468045409bc0d9179f4cdda010dbab2a5989.tar.gz |
Remove code for defunct system-types emx, macos, mswindows,
unisoft-unix, vax-vms, win32, w32.
Diffstat (limited to 'lisp/ls-lisp.el')
-rw-r--r-- | lisp/ls-lisp.el | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lisp/ls-lisp.el b/lisp/ls-lisp.el index 060e4011a4a..ee5db5bf1f5 100644 --- a/lisp/ls-lisp.el +++ b/lisp/ls-lisp.el @@ -70,10 +70,9 @@ :group 'dired) (defcustom ls-lisp-emulation - (cond ((eq system-type 'macos) 'MacOS) - ;; ((eq system-type 'windows-nt) 'MS-Windows) + (cond ;; ((eq system-type 'windows-nt) 'MS-Windows) ((memq system-type - '(hpux usg-unix-v unisoft-unix irix berkeley-unix)) + '(hpux usg-unix-v irix berkeley-unix)) 'UNIX)) ; very similar to GNU ;; Anything else defaults to nil, meaning GNU. "Platform to emulate: GNU (default), MacOS, MS-Windows, UNIX. @@ -129,7 +128,7 @@ if emulation is GNU then default is `(links uid gid)'." :group 'ls-lisp) (defcustom ls-lisp-use-insert-directory-program - (not (memq system-type '(macos ms-dos windows-nt))) + (not (memq system-type '(ms-dos windows-nt))) "Non-nil causes ls-lisp to revert back to using `insert-directory-program'. This is useful on platforms where ls-lisp is dumped into Emacs, such as Microsoft Windows, but you would still like to use a program to list |