diff options
| -rw-r--r-- | lisp/loadup.el | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/loadup.el b/lisp/loadup.el index 99abe3a48a8..74ecf2867a3 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el | |||
| @@ -190,15 +190,18 @@ | |||
| 190 | (load "term/common-win") | 190 | (load "term/common-win") |
| 191 | (load "term/w32-win") | 191 | (load "term/w32-win") |
| 192 | (load "ls-lisp") | 192 | (load "ls-lisp") |
| 193 | (load "disp-table") ; needed to setup ibm-pc char set, see internal.el | 193 | (load "disp-table") |
| 194 | (load "dos-w32") | 194 | (load "dos-w32") |
| 195 | (load "w32-fns"))) | 195 | (load "w32-fns"))) |
| 196 | (if (eq system-type 'ms-dos) | 196 | (if (eq system-type 'ms-dos) |
| 197 | (progn | 197 | (progn |
| 198 | (load "ls-lisp") | ||
| 199 | (load "dos-w32") | 198 | (load "dos-w32") |
| 200 | (load "dos-fns") | 199 | (load "dos-fns") |
| 201 | (load "dos-vars") | 200 | (load "dos-vars") |
| 201 | ;; Don't load term/common-win: it isn't appropriate for the `pc' | ||
| 202 | ;; ``window system'', which generally behaves like a terminal. | ||
| 203 | (load "term/pc-win") | ||
| 204 | (load "ls-lisp") | ||
| 202 | (load "international/ccl") ; codepage.el uses CCL en/decoder | 205 | (load "international/ccl") ; codepage.el uses CCL en/decoder |
| 203 | (load "international/codepage") ; internal.el uses cpNNN coding systems | 206 | (load "international/codepage") ; internal.el uses cpNNN coding systems |
| 204 | (load "disp-table"))) ; needed to setup ibm-pc char set, see internal.el | 207 | (load "disp-table"))) ; needed to setup ibm-pc char set, see internal.el |