2003-10-25 Steve Youngs <sryoungs@bigpond.net.au>
authorSteve Youngs <steve@sxemacs.org>
Fri, 24 Oct 2003 22:10:24 +0000 (22:10 +0000)
committerSteve Youngs <steve@sxemacs.org>
Fri, 24 Oct 2003 22:10:24 +0000 (22:10 +0000)
* Makefile.in (clean-some): Remove auto-autoloads.* and
custom-load.* as well.
(distclean): Ditto.

* dgnushack.el (dgnushack-make-load): Add a local vars section to
the dummy gnus-load.el.

lisp/ChangeLog
lisp/Makefile.in
lisp/dgnushack.el

index 71026c8..ba51440 100644 (file)
@@ -1,3 +1,12 @@
+2003-10-25  Steve Youngs  <sryoungs@bigpond.net.au>
+
+       * Makefile.in (clean-some): Remove auto-autoloads.* and
+       custom-load.* as well.
+       (distclean): Ditto.
+
+       * dgnushack.el (dgnushack-make-load): Add a local vars section to
+       the dummy gnus-load.el.
+
 2003-10-24  Teodor Zlatanov  <tzz@lifelogs.com>
 
        * spam.el (spam-ham-copy-or-move-routine): do not delete if copy
index 38099cb..b0b5447 100644 (file)
@@ -19,7 +19,7 @@ all total: clean-some gnus-load.el
        $(EMACS_COMP) -f dgnushack-compile
 
 clean-some:
-       rm -f *.elc gnus-load.el
+       rm -f *.elc gnus-load.el auto-autoloads.* custom-load.*
 
 warn: clean-some gnus-load.el
        $(EMACS_COMP) --eval '(dgnushack-compile t)' 2>&1 | egrep -v "variable G|inhibit-point-motion-hooks|coding-system|temp-results|variable gnus|variable nn|scroll-in-place|deactivate-mark|filladapt-mode|byte-code-function-p|print-quoted|ps-right-header|ps-left-header|article-inhibit|print-escape|ssl-program-arguments|message-log-max"
@@ -75,7 +75,7 @@ gnus-load.el:
        $(EMACS_COMP) -f dgnushack-make-load
 
 distclean:
-       rm -f *.orig *.rej *.elc *~ Makefile
+       rm -f *.orig *.rej *.elc auto-autoloads.* custom-load.* *~ Makefile
 
 Makefile: $(srcdir)/Makefile.in ../config.status
        cd .. \
index 0eae980..dc88a22 100644 (file)
@@ -356,7 +356,14 @@ Modify to suit your needs."))
     (with-temp-file (expand-file-name "gnus-load.el")
       (insert "\
 
-\(provide 'gnus-load)"))))
+\(provide 'gnus-load)
+
+;;; Local Variables:
+;;; version-control: never
+;;; no-byte-compile: t
+;;; no-update-autoloads: t
+;;; End:
+;;; gnus-load.el ends here"))))
 
 
 ;;; dgnushack.el ends here