diff options
| author | Andrew Choi | 2000-12-12 05:04:07 +0000 |
|---|---|---|
| committer | Andrew Choi | 2000-12-12 05:04:07 +0000 |
| commit | 591b63b4245020c6ffd6ec7416dd45e3be62c1d0 (patch) | |
| tree | c9f3119282cc9567d7575297769ce87fee2707b0 | |
| parent | 8165bf038f7543664974dfd89dd64e4ee8d254cd (diff) | |
| download | emacs-591b63b4245020c6ffd6ec7416dd45e3be62c1d0.tar.gz emacs-591b63b4245020c6ffd6ec7416dd45e3be62c1d0.zip | |
* term/mac-win.el: Remove load for ls-lisp.
* loadup.el: Load ls-lisp for system-type macos.
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/loadup.el | 3 | ||||
| -rw-r--r-- | lisp/term/mac-win.el | 8 |
3 files changed, 11 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0c08f8745f9..c2a000e908d 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2000-12-12 Andrew Choi <akochoi@i-cable.com> | ||
| 2 | |||
| 3 | * term/mac-win.el: Remove load for ls-lisp. | ||
| 4 | |||
| 5 | * loadup.el: Load ls-lisp for system-type macos. | ||
| 6 | |||
| 1 | 2000-12-12 Miles Bader <miles@gnu.org> | 7 | 2000-12-12 Miles Bader <miles@gnu.org> |
| 2 | 8 | ||
| 3 | * simple.el (delete-horizontal-space): Add BACKWARD-ONLY parameter. | 9 | * simple.el (delete-horizontal-space): Add BACKWARD-ONLY parameter. |
diff --git a/lisp/loadup.el b/lisp/loadup.el index 31a7cac8c9d..48e46932775 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el | |||
| @@ -160,6 +160,9 @@ | |||
| 160 | (load "international/ccl") ; for cpNNN coding systems in codepage.el | 160 | (load "international/ccl") ; for cpNNN coding systems in codepage.el |
| 161 | (load "international/codepage") ; internal.el uses cpNNN coding systems | 161 | (load "international/codepage") ; internal.el uses cpNNN coding systems |
| 162 | (load "disp-table"))) ; needed to setup ibm-pc char set, see internal.el | 162 | (load "disp-table"))) ; needed to setup ibm-pc char set, see internal.el |
| 163 | (if (eq system-type 'macos) | ||
| 164 | (progn | ||
| 165 | (load "ls-lisp"))) | ||
| 163 | (if (fboundp 'atan) ; preload some constants and | 166 | (if (fboundp 'atan) ; preload some constants and |
| 164 | (progn ; floating pt. functions if we have float support. | 167 | (progn ; floating pt. functions if we have float support. |
| 165 | (load "float-sup"))) | 168 | (load "float-sup"))) |
diff --git a/lisp/term/mac-win.el b/lisp/term/mac-win.el index 9164d162f62..8a55ff2a139 100644 --- a/lisp/term/mac-win.el +++ b/lisp/term/mac-win.el | |||
| @@ -100,16 +100,12 @@ | |||
| 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 |