Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
591b63b4
Commit
591b63b4
authored
Dec 12, 2000
by
Andrew Choi
Browse files
* term/mac-win.el: Remove load for ls-lisp.
* loadup.el: Load ls-lisp for system-type macos.
parent
8165bf03
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
6 deletions
+11
-6
lisp/ChangeLog
lisp/ChangeLog
+6
-0
lisp/loadup.el
lisp/loadup.el
+3
-0
lisp/term/mac-win.el
lisp/term/mac-win.el
+2
-6
No files found.
lisp/ChangeLog
View file @
591b63b4
2000-12-12 Andrew Choi <akochoi@i-cable.com>
* term/mac-win.el: Remove load for ls-lisp.
* loadup.el: Load ls-lisp for system-type macos.
2000-12-12 Miles Bader <miles@gnu.org>
* simple.el (delete-horizontal-space): Add BACKWARD-ONLY parameter.
...
...
lisp/loadup.el
View file @
591b63b4
...
...
@@ -160,6 +160,9 @@
(
load
"international/ccl"
)
; for cpNNN coding systems in codepage.el
(
load
"international/codepage"
)
; internal.el uses cpNNN coding systems
(
load
"disp-table"
)))
; needed to setup ibm-pc char set, see internal.el
(
if
(
eq
system-type
'macos
)
(
progn
(
load
"ls-lisp"
)))
(
if
(
fboundp
'atan
)
; preload some constants and
(
progn
; floating pt. functions if we have float support.
(
load
"float-sup"
)))
...
...
lisp/term/mac-win.el
View file @
591b63b4
...
...
@@ -100,16 +100,12 @@
;; Don't have this yet.
(
fset
'x-get-resource
'ignore
)
;; Use Lisp verison of ls instead of calling subprocess on ls (faster,
;; don't need to write ls).
(
load
"ls-lisp"
)
(
require
'dired
)
;; This variable specifies the Unix program to call (as a process) to
;; deteremine the amount of free space on a file system (defaults to
;; df). If it is not set to nil, ls-lisp will not work correctly
;; unless an external application df is implemented on the Mac.
(
require
'dired
)
(
setq
dired-free-space-program
nil
)
;; Set this so that Emacs calls subprocesses with "sh" as shell to
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment