view lisp/=bytecpat.el @ 25628:98e238950125

(x_build_heuristic_mask): Accept a list `(R G B)' as background color specification instead of an integer. (image-cache-eviction-delay): Replaces image-eviction-seconds. (Vimage_cache_eviction_delay): Replaces Vimage_eviction_seconds. (clear_image_cache, syms_of_xfns): Use it. (Qpostscript): Replaces Qghostscript. (gs_type): Use it. (gs_image_p): Ditto. (syms_of_xfns): Initialize Qpostscript.
author Gerd Moellmann <gerd@gnu.org>
date Fri, 10 Sep 1999 16:19:34 +0000
parents 84acc3adcd63
children
line wrap: on
line source

;;; bytecpat.el --- do recompilation for Emacs patch files.
;;; This function is used by the patch files to update Emacs releases.

(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)))