diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-07-04 04:59:58 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-07-04 04:59:58 +0000 |
commit | 5dcd1261171057c7265ddc904a0d4094bde1c6dd (patch) | |
tree | 02c1fb5122cf85870566c910718dd8373683f3f9 /lisp/loadup.el | |
parent | a672c74d731d96d777d261c16be6f280cf1376d9 (diff) | |
download | emacs-5dcd1261171057c7265ddc904a0d4094bde1c6dd.tar.gz |
Some files are in different directories.
Diffstat (limited to 'lisp/loadup.el')
-rw-r--r-- | lisp/loadup.el | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/lisp/loadup.el b/lisp/loadup.el index bc60b984b1e..1989bfd17b2 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el @@ -50,9 +50,9 @@ (garbage-collect) (load "loaddefs.el") ;Don't get confused if someone compiled this by mistake. (garbage-collect) -(load "mule") +(load "international/mule") (garbage-collect) -(load "mule-conf.el") ;Don't get confused if someone compiled this by mistake. +(load "international/mule-conf.el") ;Don't get confused if someone compiled this by mistake. (garbage-collect) (load "bindings") (setq load-source-file-function 'load-with-code-conversion) @@ -67,17 +67,17 @@ ;; Any Emacs Lisp source file (*.el) loaded here after can contain ;; multilingual text. (garbage-collect) -(load "mule-cmds") +(load "international/mule-cmds") (garbage-collect) -(load "characters") +(load "international/characters") (garbage-collect) (load "case-table") (let ((set-case-syntax-set-multibyte t)) - (load "latin-1") - (load "latin-2") - (load "latin-3") - (load "latin-4") - (load "latin-5")) + (load "international/latin-1") + (load "international/latin-2") + (load "international/latin-3") + (load "international/latin-4") + (load "international/latin-5")) (garbage-collect) ;; Load langauge specific files. (load "language/chinese") @@ -137,19 +137,19 @@ (garbage-collect) (load "startup") (garbage-collect) -(load "lisp") +(load "emacs-lisp/lisp") (garbage-collect) -(load "page") +(load "textmodes/page") (garbage-collect) (load "register") (garbage-collect) -(load "paragraphs") +(load "textmodes/paragraphs") (garbage-collect) -(load "lisp-mode") +(load "emacs-lisp/lisp-mode") (garbage-collect) -(load "text-mode") +(load "textmodes/text-mode") (garbage-collect) -(load "fill") +(load "textmodes/fill") (garbage-collect) (load "replace") (if (eq system-type 'vax-vms) |