Mercurial > emacs
view lisp/patcomp.el @ 43231:06e0fbd07e17
Various doc and message fixes.
(non-iso-charset-alist): Add mac-roman. Don't add entries for
codepages already present.
(list-block-of-chars): Display space for null entries in
translation table. Display tab specially.
(list-non-iso-charset-chars): Check for null charsets. Use pop
for clarity. Don't break 8-bit sets into sections between ranges.
(list-charset-chars): Avoid indent-tabs-mode.
(describe-char-after): Maybe use the text property for syntax
table information. Maybe report char-code-property-table info.
Maybe report character's unicode. Tweak printing of list info.
(list-input-methods): Add xref buttons.
(dump-charsets, dump-codings): Deleted (obsolete).
From Dave Love <fx@gnu.org>.
author | Pavel Janík <Pavel@Janik.cz> |
---|---|
date | Mon, 11 Feb 2002 06:09:16 +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