diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2008-04-08 22:12:12 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2008-04-08 22:12:12 +0000 |
commit | b4f9af73de11eed426bfe5b49f7add50fb94ee81 (patch) | |
tree | e8a9188b239a70584c4e2048a11cbb646beab04e /lisp | |
parent | 2378f0443a0a2b43c1045f2741401ed2f299d120 (diff) | |
download | emacs-b4f9af73de11eed426bfe5b49f7add50fb94ee81.tar.gz emacs-b4f9af73de11eed426bfe5b49f7add50fb94ee81.tar.bz2 emacs-b4f9af73de11eed426bfe5b49f7add50fb94ee81.zip |
($(lisp)/mh-e/mh-loaddefs.el): Make it depend on mh-e/*.el
rather than subdirs.el. It introduces an ugly circular dependency, tho.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 3 | ||||
-rw-r--r-- | lisp/Makefile.in | 2 |
2 files changed, 4 insertions, 1 deletions
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 <monnier@iro.umontreal.ca> + * 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 \"$@\")" \ |