diff options
author | Sam Steingold <sds@gnu.org> | 2000-12-07 15:23:07 +0000 |
---|---|---|
committer | Sam Steingold <sds@gnu.org> | 2000-12-07 15:23:07 +0000 |
commit | e04d21aaaecdca40193e176a801e3c3ca4cb5250 (patch) | |
tree | 5c107f2942e17cc5d7f12645a3fdbef5c10c6f9c /lisp/loadup.el | |
parent | 137cad7c3d334a7da9c6dc00519fc1e493160f7e (diff) | |
download | emacs-e04d21aaaecdca40193e176a801e3c3ca4cb5250.tar.gz |
Load emacs-lisp/backquote instead of autoloading
Diffstat (limited to 'lisp/loadup.el')
-rw-r--r-- | lisp/loadup.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/loadup.el b/lisp/loadup.el index 237ed920f60..31a7cac8c9d 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el @@ -52,7 +52,7 @@ (load "widget") (load "custom") -(autoload '\` "emacs-lisp/backquote" nil nil 'macro) +(load "emacs-lisp/backquote") (load "map-ynp") (load "env") (load "cus-start") @@ -160,7 +160,7 @@ (load "international/ccl") ; for cpNNN coding systems in codepage.el (load "international/codepage") ; internal.el uses cpNNN coding systems (load "disp-table"))) ; needed to setup ibm-pc char set, see internal.el -(if (fboundp 'atan) ; preload some constants and +(if (fboundp 'atan) ; preload some constants and (progn ; floating pt. functions if we have float support. (load "float-sup"))) (message "%s" (garbage-collect)) @@ -250,7 +250,7 @@ (princ ")))\n" (current-buffer)) (write-region (point-min) (point-max) (expand-file-name - (cond + (cond ((eq system-type 'ms-dos) "../lib-src/fns.el") ((eq system-type 'windows-nt) @@ -276,7 +276,7 @@ (if (or (member (nth 3 command-line-args) '("dump" "bootstrap")) (member (nth 4 command-line-args) '("dump" "bootstrap"))) (if (eq system-type 'vax-vms) - (progn + (progn (message "Dumping data as file temacs.dump") (dump-emacs "temacs.dump" "temacs") (kill-emacs)) |