diff options
| author | Eli Zaretskii | 2008-08-23 16:59:51 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2008-08-23 16:59:51 +0000 |
| commit | bbe44805e2440b986e4e91997e3515720e732c29 (patch) | |
| tree | 7ca460bc859fe4f1475b194b84c6b8c860397fb4 | |
| parent | a5b5acaf92e77036e5b513501d774629d22398b3 (diff) | |
| download | emacs-bbe44805e2440b986e4e91997e3515720e732c29.tar.gz emacs-bbe44805e2440b986e4e91997e3515720e732c29.zip | |
[ms-dos]: Load term/pc-win.
| -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 |