summaryrefslogtreecommitdiff
path: root/lisp/patcomp.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2012-05-03 23:38:36 -0700
committerGlenn Morris <rgm@gnu.org>2012-05-03 23:38:36 -0700
commit3c74813afd3a9e596af5ab920e0a75600b132505 (patch)
treee9c19780de1887d6d9195c5f6e5aedea8d4ce6ff /lisp/patcomp.el
parent0bfcf5c598d7c351591827b14482253adf9ab015 (diff)
* patcomp.el, play/bruce.el: Move to obsolete/.
* etc/NEWS: Mention this.
Diffstat (limited to 'lisp/patcomp.el')
-rw-r--r--lisp/patcomp.el22
1 files changed, 0 insertions, 22 deletions
diff --git a/lisp/patcomp.el b/lisp/patcomp.el
deleted file mode 100644
index c1965a763c..0000000000
--- a/lisp/patcomp.el
+++ /dev/null
@@ -1,22 +0,0 @@
-;;; patcomp.el --- used by patch files to update Emacs releases -*- no-byte-compile: t -*-
-
-;; 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."
- (let ((load-path (list (expand-file-name "lisp"))))
- (byte-recompile-directory "lisp")))
-
-(defun batch-byte-compile-emacs ()
- "Compile new files installed in the Emacs `lisp' directory.
-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