diff options
| author | Richard M. Stallman | 1993-05-15 21:17:06 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-05-15 21:17:06 +0000 |
| commit | 369747519d1b6dce5acb50ec20d529a3ed0c96f7 (patch) | |
| tree | 4ab6651bc75809605744ff6ab13c4f9867b68d9d | |
| parent | 9a1277dd3bb18883a023db7af279abcd89f7eef9 (diff) | |
| download | emacs-369747519d1b6dce5acb50ec20d529a3ed0c96f7.tar.gz emacs-369747519d1b6dce5acb50ec20d529a3ed0c96f7.zip | |
Preload mouse, scroll-bar and select if have multi-frames.
| -rw-r--r-- | lisp/loadup.el | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/loadup.el b/lisp/loadup.el index bdd438de77d..dc0c393829b 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el | |||
| @@ -52,7 +52,12 @@ | |||
| 52 | (load "window") | 52 | (load "window") |
| 53 | (garbage-collect) | 53 | (garbage-collect) |
| 54 | (if (fboundp 'delete-frame) | 54 | (if (fboundp 'delete-frame) |
| 55 | (load "frame")) | 55 | (progn |
| 56 | (load "frame") | ||
| 57 | (load "mouse") | ||
| 58 | (garbage-collect) | ||
| 59 | (load "scroll-bar") | ||
| 60 | (load "select"))) | ||
| 56 | (garbage-collect) | 61 | (garbage-collect) |
| 57 | (load "paths.el") ;Don't get confused if someone compiled paths by mistake. | 62 | (load "paths.el") ;Don't get confused if someone compiled paths by mistake. |
| 58 | (garbage-collect) | 63 | (garbage-collect) |