diff options
| author | Jason Rumney | 2007-05-15 23:21:42 +0000 |
|---|---|---|
| committer | Jason Rumney | 2007-05-15 23:21:42 +0000 |
| commit | ddaa805750df7e6694596a052fe78583d7316f9d (patch) | |
| tree | 052753056169219a10d0f8fae1431954bf47aba5 | |
| parent | c60b74b403da560f1457dff79de4eff17c658e4b (diff) | |
| download | emacs-ddaa805750df7e6694596a052fe78583d7316f9d.tar.gz emacs-ddaa805750df7e6694596a052fe78583d7316f9d.zip | |
Only load x-dnd and x-win when X is compiled in.
Load w32-win and dependencies on windows-nt.
| -rw-r--r-- | lisp/loadup.el | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lisp/loadup.el b/lisp/loadup.el index 1ee27ed427a..b20b40bc6c2 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el | |||
| @@ -179,9 +179,12 @@ | |||
| 179 | (load "international/fontset") | 179 | (load "international/fontset") |
| 180 | (load "dnd") | 180 | (load "dnd") |
| 181 | (load "mwheel") | 181 | (load "mwheel") |
| 182 | (load "tool-bar") | 182 | (load "tool-bar"))) |
| 183 | (if (featurep 'x) | ||
| 184 | (progn | ||
| 183 | (load "x-dnd") | 185 | (load "x-dnd") |
| 184 | (load "term/x-win"))) | 186 | (load "term/x-win"))) |
| 187 | |||
| 185 | (message "%s" (garbage-collect)) | 188 | (message "%s" (garbage-collect)) |
| 186 | 189 | ||
| 187 | (if (eq system-type 'vax-vms) | 190 | (if (eq system-type 'vax-vms) |
| @@ -189,6 +192,9 @@ | |||
| 189 | (load "vms-patch"))) | 192 | (load "vms-patch"))) |
| 190 | (if (eq system-type 'windows-nt) | 193 | (if (eq system-type 'windows-nt) |
| 191 | (progn | 194 | (progn |
| 195 | (load "international/ccl") | ||
| 196 | (load "international/code-pages") | ||
| 197 | (load "term/w32-win") | ||
| 192 | (load "ls-lisp") | 198 | (load "ls-lisp") |
| 193 | (load "disp-table") ; needed to setup ibm-pc char set, see internal.el | 199 | (load "disp-table") ; needed to setup ibm-pc char set, see internal.el |
| 194 | (load "dos-w32") | 200 | (load "dos-w32") |