summaryrefslogtreecommitdiff
path: root/lisp/obsolete/patcomp.el
diff options
context:
space:
mode:
authorStefan Kangas <stefan@marxist.se>2022-06-17 11:52:20 +0200
committerStefan Kangas <stefan@marxist.se>2022-06-17 13:12:03 +0200
commit17b3f8d56e254f8f0478ce583451f02e6034ed48 (patch)
treee4383c3435c2dfcc6d205867bb98146176a25fab /lisp/obsolete/patcomp.el
parent3eb47077d3d9e9e90ac7b9644d13c0da26c3ede8 (diff)
downloademacs-17b3f8d56e254f8f0478ce583451f02e6034ed48.tar.gz
emacs-17b3f8d56e254f8f0478ce583451f02e6034ed48.tar.bz2
emacs-17b3f8d56e254f8f0478ce583451f02e6034ed48.zip
Delete most libraries obsolete since 24.1 and 24.3
Emacs 24.3 was released 10 years ago. * lisp/obsolete/abbrevlist.el: * lisp/obsolete/assoc.el: * lisp/obsolete/complete.el: * lisp/obsolete/cust-print.el: * lisp/obsolete/erc-hecomplete.el: * lisp/obsolete/mailpost.el: * lisp/obsolete/mouse-sel.el: * lisp/obsolete/old-emacs-lock.el: * lisp/obsolete/patcomp.el: * lisp/obsolete/pc-select.el: * lisp/obsolete/s-region.el: Delete files. These libraries have been obsolete since Emacs 24.1 or 24.3. (Bug#50999) * etc/NEWS: Announce their deletion. * lisp/minibuffer.el (minibuffer-confirm-exit-commands): * lisp/textmodes/rst.el: Remove references to above obsolete libraries.
Diffstat (limited to 'lisp/obsolete/patcomp.el')
-rw-r--r--lisp/obsolete/patcomp.el24
1 files changed, 0 insertions, 24 deletions
diff --git a/lisp/obsolete/patcomp.el b/lisp/obsolete/patcomp.el
deleted file mode 100644
index 2c35cb07007..00000000000
--- a/lisp/obsolete/patcomp.el
+++ /dev/null
@@ -1,24 +0,0 @@
-;;; patcomp.el --- used by patch files to update Emacs releases -*- lexical-binding: t; -*-
-
-;; This file is part of GNU Emacs.
-
-;; Obsolete-since: 24.3
-
-;;; 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