comparison lisp/term/mac-win.el @ 34467:95887061f1e4

* term/mac-win.el: Remove load for ls-lisp. * loadup.el: Load ls-lisp for system-type macos.
author Andrew Choi <akochoi@shaw.ca>
date Tue, 12 Dec 2000 05:04:07 +0000
parents a72416fbef44
children b174db545cfd
comparison
equal deleted inserted replaced
34466:3e1faf8a629f 34467:95887061f1e4
98 defined-colors)) 98 defined-colors))
99 99
100 ;; Don't have this yet. 100 ;; Don't have this yet.
101 (fset 'x-get-resource 'ignore) 101 (fset 'x-get-resource 'ignore)
102 102
103 ;; Use Lisp verison of ls instead of calling subprocess on ls (faster,
104 ;; don't need to write ls).
105 (load "ls-lisp")
106
107 (require 'dired)
108
109 ;; This variable specifies the Unix program to call (as a process) to 103 ;; This variable specifies the Unix program to call (as a process) to
110 ;; deteremine the amount of free space on a file system (defaults to 104 ;; deteremine the amount of free space on a file system (defaults to
111 ;; df). If it is not set to nil, ls-lisp will not work correctly 105 ;; df). If it is not set to nil, ls-lisp will not work correctly
112 ;; unless an external application df is implemented on the Mac. 106 ;; unless an external application df is implemented on the Mac.
107 (require 'dired)
108
113 (setq dired-free-space-program nil) 109 (setq dired-free-space-program nil)
114 110
115 ;; Set this so that Emacs calls subprocesses with "sh" as shell to 111 ;; Set this so that Emacs calls subprocesses with "sh" as shell to
116 ;; expand filenames Note no subprocess for the shell is actually 112 ;; expand filenames Note no subprocess for the shell is actually
117 ;; started (see run_mac_command in sysdep.c). 113 ;; started (see run_mac_command in sysdep.c).