summaryrefslogtreecommitdiff
path: root/lisp/loadup.el
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2008-08-23 16:59:51 +0000
committerEli Zaretskii <eliz@gnu.org>2008-08-23 16:59:51 +0000
commitadecd5504fc871cbfb190576b78f165fd2cac778 (patch)
tree9f78387d7b3d608a44f7c8b2465dce30eeb0a863 /lisp/loadup.el
parent40aadf546c6af783105d9d52e7525b85d062f6d3 (diff)
downloademacs-adecd5504fc871cbfb190576b78f165fd2cac778.tar.gz
[ms-dos]: Load term/pc-win.
Diffstat (limited to 'lisp/loadup.el')
-rw-r--r--lisp/loadup.el7
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 @@
(load "term/common-win")
(load "term/w32-win")
(load "ls-lisp")
- (load "disp-table") ; needed to setup ibm-pc char set, see internal.el
+ (load "disp-table")
(load "dos-w32")
(load "w32-fns")))
(if (eq system-type 'ms-dos)
(progn
- (load "ls-lisp")
(load "dos-w32")
(load "dos-fns")
(load "dos-vars")
+ ;; Don't load term/common-win: it isn't appropriate for the `pc'
+ ;; ``window system'', which generally behaves like a terminal.
+ (load "term/pc-win")
+ (load "ls-lisp")
(load "international/ccl") ; codepage.el uses CCL en/decoder
(load "international/codepage") ; internal.el uses cpNNN coding systems
(load "disp-table"))) ; needed to setup ibm-pc char set, see internal.el