comparison lisp/loadup.el @ 94001:96f9ff09bbb0

* Makefile.in (bootstrap-prepare): Don't copy ldefs-boot over loaddefs. * loadup.el: Load ldefs-boot.el if loaddefs.el doesn't exist.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Fri, 11 Apr 2008 13:27:14 +0000
parents ea7acaabb973
children 59143f6957b1
comparison
equal deleted inserted replaced
94000:ee22366f2a68 94001:96f9ff09bbb0
79 (load "startup") 79 (load "startup")
80 80
81 (message "Lists of integers (garbage collection statistics) are normal output") 81 (message "Lists of integers (garbage collection statistics) are normal output")
82 (message "while building Emacs; they do not indicate a problem.") 82 (message "while building Emacs; they do not indicate a problem.")
83 (message "%s" (garbage-collect)) 83 (message "%s" (garbage-collect))
84 (load "loaddefs.el") ;Don't get confused if someone compiled this by mistake. 84
85 (condition-case nil
86 ;; Don't get confused if someone compiled this by mistake.
87 (load "loaddefs.el")
88 ;; In case loaddefs hasn't been generated yet.
89 (file-error (load "ldefs-boot.el")))
90
85 (message "%s" (garbage-collect)) 91 (message "%s" (garbage-collect))
86 (load "simple") 92 (load "simple")
87 93
88 (load "help") 94 (load "help")
89 95