view lisp/=bytecpat.el @ 19692:4b8ff0021dcb

Don't unset C-mouse-down bindings. Ignore "Windows" keys by default. Move keypad key definitions from term/w32-win.el. (convert-standard-file-name): New function. (make-auto-save-file-name): Use convert-standard-file-name. Update doc strings. (w32-startup): Deleted function. (w32-check-shell-configuration, w32-init-info): New functions. (w32-system-shell-p): Renamed from w32-using-system-shell-p. Added shell name argument.
author Geoff Voelker <voelker@cs.washington.edu>
date Tue, 02 Sep 1997 23:54:07 +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)))