Mercurial > emacs
comparison src/ChangeLog @ 110559:9c63d46e000c
Fix int/EMACS_INT use in keyboard.c.
keyboard.c <last_point_position, last_non_minibuf_size>: Declare EMACS_INT.
(echo_truncate, adjust_point_for_property, read_char)
(gen_help_event, make_lispy_event, modify_event_symbol)
(Fexecute_extended_command, stuff_buffered_input): Use EMACS_INT
for buffer positions and string length.
keyboard.h (gen_help_event): Adjust prototype.
termhooks.h <struct input_event>: Make `code' member EMACS_INT.
commands.h <last_point_position>: Declare EMACS_INT.
xdisp.c <help_echo_pos>: Define as EMACS_INT.
(truncate_echo_area): Accept EMACS_INT argument.
dispextern.h <help_echo_pos>: Declare EMACS_INT.
lisp.h (truncate_echo_area): Adjust prototype.
composite.c (composition_adjust_point): Return EMACS_INT.
composite.h (composition_adjust_point): Adjust prototype.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Sat, 25 Sep 2010 05:36:36 -0400 |
parents | 9b780f215f98 |
children | 3b57f0a3b766 |
comparison
equal
deleted
inserted
replaced
110558:9b780f215f98 | 110559:9c63d46e000c |
---|---|
1 2010-09-25 Eli Zaretskii <eliz@gnu.org> | |
2 | |
3 * keyboard.c <last_point_position, last_non_minibuf_size>: Declare | |
4 EMACS_INT. | |
5 (echo_truncate, adjust_point_for_property, read_char) | |
6 (gen_help_event, make_lispy_event, modify_event_symbol) | |
7 (Fexecute_extended_command, stuff_buffered_input): Use EMACS_INT | |
8 for buffer positions and string length. | |
9 | |
10 * keyboard.h (gen_help_event): Adjust prototype. | |
11 | |
12 * termhooks.h <struct input_event>: Make `code' member EMACS_INT. | |
13 | |
14 * commands.h <last_point_position>: Declare EMACS_INT. | |
15 | |
16 * xdisp.c <help_echo_pos>: Define as EMACS_INT. | |
17 (truncate_echo_area): Accept EMACS_INT argument. | |
18 | |
19 * dispextern.h <help_echo_pos>: Declare EMACS_INT. | |
20 | |
21 * lisp.h (truncate_echo_area): Adjust prototype. | |
22 | |
23 * composite.c (composition_adjust_point): Return EMACS_INT. | |
24 | |
25 * composite.h (composition_adjust_point): Adjust prototype. | |
26 | |
1 2010-09-25 Juanma Barranquero <lekktu@gmail.com> | 27 2010-09-25 Juanma Barranquero <lekktu@gmail.com> |
2 | 28 |
3 * process.c (Fmake_network_process): When arg :host is 'local, | 29 * process.c (Fmake_network_process): When arg :host is 'local, |
4 use address 127.0.0.1, not name "localhost". (Bug#6781) | 30 use address 127.0.0.1, not name "localhost". (Bug#6781) |
5 | 31 |