diff options
author | Pavel Janík <Pavel@Janik.cz> | 2001-07-15 19:53:53 +0000 |
---|---|---|
committer | Pavel Janík <Pavel@Janik.cz> | 2001-07-15 19:53:53 +0000 |
commit | 60370d40737ecf92cec4ab75aa73d3ea9ed2d858 (patch) | |
tree | 29c0aec9d5f8e7af681d5ff1b49e72245067cf5c /lisp/patcomp.el | |
parent | 715a2ca2fc1be26e8420f209c3440b90d687fec6 (diff) | |
download | emacs-60370d40737ecf92cec4ab75aa73d3ea9ed2d858.tar.gz |
Some fixes to follow coding conventions.
Diffstat (limited to 'lisp/patcomp.el')
-rw-r--r-- | lisp/patcomp.el | 8 |
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 |