Function: batch-byte-recompile-emacs
batch-byte-recompile-emacs is a byte-compiled function defined in
patcomp.el.gz.
Signature
(batch-byte-recompile-emacs)
Documentation
Recompile the Emacs lisp directory.
This is used after installing the patches for a new version.
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/patcomp.el.gz
;;; 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")))