summaryrefslogtreecommitdiff
path: root/lisp/patcomp.el
diff options
context:
space:
mode:
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 1470e82f367..ccc25308d30 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