annotate lisp/=bytecpat.el @ 24674:d0dee612f8e3
[andrewi]
(dumpglyphs): On Windows NT, do output in Unicode even
for ASCII, if enabled, to avoid memory allocation overhead for
implicit Unicode conversion. Also, recognize that ASCII and
Latin-1 have a trivial conversion to Unicode, so x_2byte_buffer
lready contains the Unicode characters in that case.
(construct_drag_n_drop): Remove old code that was
trashing the drop location.
[jasonr]
(w32_write_glyphs, w32_clear_end_of_line,
w32_clear_frame, clear_cursor, x_display_bar_cursor,
x_display_box_cursor, x_set_window_size): Use phys_cursor_on
field in frame.
(do_line_dance): Updated WRT xterm.c. Use macros where possible.
(dumprectangle): Take into account the width of a left-side
scroll bar.
author |
Andrew Innes <andrewi@gnu.org> |
date |
Sun, 02 May 1999 10:34:21 +0000 |
parents |
84acc3adcd63 |
children |
|
rev |
line source |
13337
|
1 ;;; bytecpat.el --- do recompilation for Emacs patch files.
|
13335
|
2 ;;; This function is used by the patch files to update Emacs releases.
|
|
3
|
|
4 (defun batch-byte-recompile-emacs ()
|
|
5 "Recompile the Emacs `lisp' directory.
|
|
6 This is used after installing the patches for a new version."
|
|
7 (let ((load-path (list (expand-file-name "lisp"))))
|
|
8 (byte-recompile-directory "lisp")))
|
|
9
|
|
10 (defun batch-byte-compile-emacs ()
|
|
11 "Compile new files installed in the Emacs `lisp' directory.
|
|
12 This is used after installing the patches for a new version.
|
|
13 It uses the command line arguments to specify the files to compile."
|
|
14 (let ((load-path (list (expand-file-name "lisp"))))
|
|
15 (batch-byte-compile)))
|