Function: batch-byte-compile-emacs

batch-byte-compile-emacs is a byte-compiled function defined in patcomp.el.gz.

Signature

(batch-byte-compile-emacs)

Documentation

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.

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/patcomp.el.gz
(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)))