diff options
author | Karoly Lorentey <lorentey@elte.hu> | 2005-04-18 14:32:14 +0000 |
---|---|---|
committer | Karoly Lorentey <lorentey@elte.hu> | 2005-04-18 14:32:14 +0000 |
commit | 774a8da14bb2520b6adad223ab13f0b64f002872 (patch) | |
tree | 4508e75394a8c14887e443e6b213e1191d8bc24d /lisp/loadup.el | |
parent | 6ab9dd8034fcd76f5d2e92a91243f8d8be3a8f98 (diff) | |
download | emacs-774a8da14bb2520b6adad223ab13f0b64f002872.tar.gz |
Fix bootstrap error during loadup.
* lisp/loadup.el: Load dnd.el before x-dnd.el.
* src/Makefile.in (SOME_MACHINE_LISP): Add dnd.elc.
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-329
Diffstat (limited to 'lisp/loadup.el')
-rw-r--r-- | lisp/loadup.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/loadup.el b/lisp/loadup.el index 8ada4710400..0685caf78aa 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el @@ -196,6 +196,7 @@ (when (fboundp 'x-create-frame) (load "mouse") (load "international/fontset") + (load "dnd") (load "x-dnd") (load "term/x-win")) |