diff options
| author | Eli Zaretskii | 2010-09-25 05:36:36 -0400 |
|---|---|---|
| committer | Eli Zaretskii | 2010-09-25 05:36:36 -0400 |
| commit | 41118bd30dd303cf60a70990c5347a6cfdfca1ef (patch) | |
| tree | a8161184b75d6d25b31578a78ef9fae56625fe74 /src/dispextern.h | |
| parent | f5276b757f179ca3a97565344072422da5697c68 (diff) | |
| download | emacs-41118bd30dd303cf60a70990c5347a6cfdfca1ef.tar.gz emacs-41118bd30dd303cf60a70990c5347a6cfdfca1ef.zip | |
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.
Diffstat (limited to 'src/dispextern.h')
| -rw-r--r-- | src/dispextern.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dispextern.h b/src/dispextern.h index c23c1b673ad..8c73117a4e7 100644 --- a/src/dispextern.h +++ b/src/dispextern.h | |||
| @@ -2957,7 +2957,7 @@ extern int help_echo_showing_p; | |||
| 2957 | extern int current_mode_line_height, current_header_line_height; | 2957 | extern int current_mode_line_height, current_header_line_height; |
| 2958 | extern Lisp_Object help_echo_string, help_echo_window; | 2958 | extern Lisp_Object help_echo_string, help_echo_window; |
| 2959 | extern Lisp_Object help_echo_object, previous_help_echo_string; | 2959 | extern Lisp_Object help_echo_object, previous_help_echo_string; |
| 2960 | extern int help_echo_pos; | 2960 | extern EMACS_INT help_echo_pos; |
| 2961 | extern struct frame *last_mouse_frame; | 2961 | extern struct frame *last_mouse_frame; |
| 2962 | extern int last_tool_bar_item; | 2962 | extern int last_tool_bar_item; |
| 2963 | extern Lisp_Object Vmouse_autoselect_window; | 2963 | extern Lisp_Object Vmouse_autoselect_window; |