1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-17 17:58:46 +00:00

* Makefile.in (bootstrap-prepare): Don't copy ldefs-boot over loaddefs.

* loadup.el: Load ldefs-boot.el if loaddefs.el doesn't exist.
This commit is contained in:
Stefan Monnier 2008-04-11 13:27:14 +00:00
parent e94a977386
commit 23c2e0e4ab
3 changed files with 13 additions and 5 deletions

View File

@ -1,3 +1,8 @@
2008-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
* Makefile.in (bootstrap-prepare): Don't copy ldefs-boot over loaddefs.
* loadup.el: Load ldefs-boot.el if loaddefs.el doesn't exist.
2008-04-11 Jan Djärv <jan.h.d@swipnet.se>
* tooltip.el (tooltip-show-help-non-mode): Set message-truncate-lines

View File

@ -311,11 +311,8 @@ $(CAL_DIR)/hol-loaddefs.el: $(CAL_SRC)
bootstrap-prepare:
if test -x $(EMACS); then \
$(MAKE) $(MFLAGS) autoloads; \
else \
cp $(lisp)/ldefs-boot.el $(lisp)/loaddefs.el; \
fi
chmod +w $(lisp)/loaddefs.el \
$(lisp)/ps-print.el \
chmod +w $(lisp)/ps-print.el \
$(lisp)/emacs-lisp/cl-loaddefs.el
maintainer-clean: distclean bootstrap-clean

View File

@ -81,7 +81,13 @@
(message "Lists of integers (garbage collection statistics) are normal output")
(message "while building Emacs; they do not indicate a problem.")
(message "%s" (garbage-collect))
(load "loaddefs.el") ;Don't get confused if someone compiled this by mistake.
(condition-case nil
;; Don't get confused if someone compiled this by mistake.
(load "loaddefs.el")
;; In case loaddefs hasn't been generated yet.
(file-error (load "ldefs-boot.el")))
(message "%s" (garbage-collect))
(load "simple")