view lisp/=bytecpat.el @ 25114:be5d3e21fbd7

(load_color): Remove static from definition and remove prototype. [MSDOS]: Add a DOS-specific version of load_color. (lookup_face): Replace FRAME_TERMCAP_P with !FRAME_WINDOW_P. (lookup_derived_face): New function. (realize_default_face): Support MSDOS frames. [MSDOS]: If fore/background colors are unspecified, inherit them from the frame. (realize_face): Support MSDOS frames. (realize_tty_face): Support MSDOS frames. [MSDOS]: If the face color is not in Vface_tty_color_alist, call load_color to try to find a suitable approximation. If the face is inverse-video, swap the foreground and background colors.
author Eli Zaretskii <eliz@gnu.org>
date Fri, 30 Jul 1999 08:19:22 +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)))