comparison lisp/loadup.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 fedc41b477f0
children c088e2f67eb9
comparison
equal deleted inserted replaced
34466:3e1faf8a629f 34467:95887061f1e4
158 (load "dos-fns") 158 (load "dos-fns")
159 (load "dos-vars") 159 (load "dos-vars")
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")))
166 (message "%s" (garbage-collect)) 169 (message "%s" (garbage-collect))
167 170