]> git.eshelyaron.com Git - emacs.git/commitdiff
Add local-variable settings to the generated file.
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 16 Aug 2000 20:49:45 +0000 (20:49 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 16 Aug 2000 20:49:45 +0000 (20:49 +0000)
lisp/cus-dep.el
lisp/finder.el

index 180d6679b3e9c627ababe766ab15c7b7d9624eca..4ce2932ab72124da7a5693c2a51503e7e3bb0f57 100644 (file)
@@ -162,10 +162,16 @@ Usage: emacs -batch -l ./cus-dep.el -f custom-make-dependencies DIRS"
 
 \(provide 'cus-load)
 
+;;; Local Variables:
+;;; version-control: never
+;;; no-byte-compile: t
+;;; no-update-autoloads: t
+;;; End:
 ;;; cus-load.el ends here\n")
   (let ((kept-new-versions 10000000))
     (save-buffer))
   (message "Generating cus-load.el...done")
   (kill-emacs))
 
+\f
 ;;; cus-dep.el ends here
index 4eb7d9949e95a2293ba70aca72db4521ccddac3f..037083e20b5fe39d202022d3aacddcfe3b23540d 100644 (file)
@@ -159,7 +159,15 @@ no arguments compiles from `load-path'."
                    )))
            (directory-files (or d ".")))))
        (or dirs load-path))
-      (insert "))\n\n(provide 'finder-inf)\n\n;;; finder-inf.el ends here\n")
+      (insert "))\n
+\(provide 'finder-inf)
+
+;;; Local Variables:
+;;; version-control: never
+;;; no-byte-compile: t
+;;; no-update-autoloads: t
+;;; End:
+;;; finder-inf.el ends here\n")
       (kill-buffer "*finder-scratch*")
       (eval-current-buffer) ;; So we get the new keyword list immediately
       (basic-save-buffer))))
@@ -333,6 +341,7 @@ finder directory, \\[finder-exit] = quit, \\[finder-summary] = help")))
   (and (get-buffer "*Finder Category*")
        (kill-buffer "*Finder Category*")))
 
+\f
 (provide 'finder)
 
 ;;; finder.el ends here