view lisp/patcomp.el @ 20735:d97c44710cac

Comment about CCL syntax modified. (ccl-command-table): Add read-multibyte-character, write-multibyte-character, and unify-character. (ccl-code-table): Add ex-cmd. (ccl-extended-code-table): New variable. (ccl-embed-extended-command): New function. (ccl-compile-read-multibyte-character, ccl-compile-write-multibyte-character, ccl-compile-unify-character, ccl-compile-iterate-multiple-map, ccl-compile-translate-multiple-map, ccl-compile-translate-single-map, ccl-compile-multiple-map-function) New functions. (ccl-dump-ex-cmd, ccl-dump-read-multibyte-character, ccl-dump-write-multibyte-character, ccl-dump-unify-character, ccl-dump-unify-character-const-tbl, ccl-dump-iterate-multiple-map, ccl-dump-translate-multiple-map, ccl-dump-translate-single-map): New functions.
author Kenichi Handa <handa@m17n.org>
date Thu, 22 Jan 1998 01:42:20 +0000
parents bd56cdc4d07b
children a06008c964f8
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)))