From: Stefan Monnier Date: Tue, 8 Apr 2008 22:12:12 +0000 (+0000) Subject: ($(lisp)/mh-e/mh-loaddefs.el): Make it depend on mh-e/*.el X-Git-Tag: emacs-pretest-23.0.90~6420 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b4f9af73de11eed426bfe5b49f7add50fb94ee81;p=emacs.git ($(lisp)/mh-e/mh-loaddefs.el): Make it depend on mh-e/*.el rather than subdirs.el. It introduces an ugly circular dependency, tho. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0448099f63c..6e7714232da 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2008-04-08 Stefan Monnier + * Makefile.in ($(lisp)/mh-e/mh-loaddefs.el): Make it depend on mh-e/*.el + rather than subdirs.el. It introduces an ugly circular dependency, tho. + * calc/calc.el: Load "cal-loaddefs" rather than set up autoloads manually. (calc-mode-map, calc-digit-map, calc-dispatch-map): Move initialization into declaration. diff --git a/lisp/Makefile.in b/lisp/Makefile.in index c81b85dfd97..069c5d2154c 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in @@ -230,7 +230,7 @@ $(lisp)/progmodes/cc-mode.elc: \ # Update MH-E internal autoloads. These are not to be confused with # the autoloads for the MH-E entry points, which are already in loaddefs.el. mh-autoloads: $(lisp)/mh-e/mh-loaddefs.el -$(lisp)/mh-e/mh-loaddefs.el: $(lisp)/subdirs.el +$(lisp)/mh-e/mh-loaddefs.el: $(lisp)/mh-e/*.el $(emacs) -l autoload \ --eval "(setq generate-autoload-cookie \";;;###mh-autoload\")" \ --eval "(setq generated-autoload-file \"$@\")" \