Mercurial > emacs
view lisp/patcomp.el @ 89180:1d29c2b108e6
(CHAR_STRING): Call char_string if C is greater than
MAX_3_BYTE_CHAR.
(CHAR_STRING_ADVANCE): Likewise.
(STRING_CHAR): Call string_char instead of
string_char_with_unification.
(STRING_CHAR_AND_LENGTH): Likewise.
(STRING_CHAR_ADVANCE): Likewise.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Wed, 09 Oct 2002 05:16:05 +0000 |
parents | 67b464da13ec |
children | 33d53d287ee4 |
line wrap: on
line source
;;; patcomp.el --- used by patch files to update Emacs releases ;; This file is part of GNU Emacs. ;;; Commentary: ;;; Code: (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))) ;;; patcomp.el ends here