view lisp/patcomp.el @ 12876:fedbe59f374e

(vc-next-action-on-file): Moved the setting of the default branch to vc-backend-checkout, where it belongs. (vc-backend-checkout): If an explicit version was specified, adjust the default branch accordingly.
author André Spiegel <spiegel@gnu.org>
date Thu, 17 Aug 1995 14:10:09 +0000
parents de27224b0b43
children bd56cdc4d07b
line wrap: on
line source

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