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
ddaa8057
Commit
ddaa8057
authored
May 15, 2007
by
Jason Rumney
Browse files
Only load x-dnd and x-win when X is compiled in.
Load w32-win and dependencies on windows-nt.
parent
c60b74b4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
lisp/loadup.el
lisp/loadup.el
+7
-1
No files found.
lisp/loadup.el
View file @
ddaa8057
...
...
@@ -179,9 +179,12 @@
(
load
"international/fontset"
)
(
load
"dnd"
)
(
load
"mwheel"
)
(
load
"tool-bar"
)
(
load
"tool-bar"
)))
(
if
(
featurep
'x
)
(
progn
(
load
"x-dnd"
)
(
load
"term/x-win"
)))
(
message
"%s"
(
garbage-collect
))
(
if
(
eq
system-type
'vax-vms
)
...
...
@@ -189,6 +192,9 @@
(
load
"vms-patch"
)))
(
if
(
eq
system-type
'windows-nt
)
(
progn
(
load
"international/ccl"
)
(
load
"international/code-pages"
)
(
load
"term/w32-win"
)
(
load
"ls-lisp"
)
(
load
"disp-table"
)
; needed to setup ibm-pc char set, see internal.el
(
load
"dos-w32"
)
...
...
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