summaryrefslogtreecommitdiff
path: root/lisp/patcomp.el
diff options
context:
space:
mode:
authorPavel Janík <Pavel@Janik.cz>2001-07-15 19:53:53 +0000
committerPavel Janík <Pavel@Janik.cz>2001-07-15 19:53:53 +0000
commit60370d40737ecf92cec4ab75aa73d3ea9ed2d858 (patch)
tree29c0aec9d5f8e7af681d5ff1b49e72245067cf5c /lisp/patcomp.el
parent715a2ca2fc1be26e8420f209c3440b90d687fec6 (diff)
Some fixes to follow coding conventions.
Diffstat (limited to 'lisp/patcomp.el')
-rw-r--r--lisp/patcomp.el8
1 files changed, 8 insertions, 0 deletions
diff --git a/lisp/patcomp.el b/lisp/patcomp.el
index 1470e82f36..ccc25308d3 100644
--- a/lisp/patcomp.el
+++ b/lisp/patcomp.el
@@ -1,5 +1,11 @@
;;; patcomp.el --- used by patch files to update Emacs releases
+;; This file is part of GNU Emacs.
+
+;;; Commentary:
+
+;;; Code:
+
(defun batch-byte-recompile-emacs ()
"Recompile the Emacs `lisp' directory.
This is used after installing the patches for a new version."
@@ -12,3 +18,5 @@ This is used after installing the patches for a new version.
It uses the command line arguments to specify the files to compile."
(let ((load-path (list (expand-file-name "lisp"))))
(batch-byte-compile)))
+
+;;; patcomp.el ends here