diff options
| author | Gerd Moellmann | 2000-04-03 12:19:31 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-04-03 12:19:31 +0000 |
| commit | 587a49abfbb988ea16cc2b6dcad3b532fabd27ff (patch) | |
| tree | 3bf36a956cb6c76c323224147e02136f312d0d14 /src | |
| parent | fa7dad5bfc46028b557dd43d6e0d7fe50c21c5a4 (diff) | |
| download | emacs-587a49abfbb988ea16cc2b6dcad3b532fabd27ff.tar.gz emacs-587a49abfbb988ea16cc2b6dcad3b532fabd27ff.zip | |
(NUM_MOUSE_BUTTONS): Removed.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 31 | ||||
| -rw-r--r-- | src/termhooks.h | 3 |
2 files changed, 27 insertions, 7 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 9f3f20bbb3e..2f80f3e727d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,26 @@ | |||
| 1 | 2000-04-03 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * keyboard.c (lispy_mouse_names): Variable removed. | ||
| 4 | (Vlispy_mouse_stem): New variable. | ||
| 5 | (syms_of_keyboard): Initialize Vlispy_mouse_stem. | ||
| 6 | (make_lispy_event) <mouse_click, scroll_bar_click>: Don't abort | ||
| 7 | for any mouse button number. Increase size of mouse_syms and | ||
| 8 | button_down_location as needed. Call modify_event_symbol with | ||
| 9 | different arguments. | ||
| 10 | (make_lispy_event) <scroll_bar_click> [USE_TOOLKIT_SCROLL_BARS]: | ||
| 11 | Call modify_event_symbol with different arguments. | ||
| 12 | (make_lispy_event) <w32_scroll_bar_click> [WINDOWSNT]: Don't abort | ||
| 13 | for any button number. Call modify_event_symbol with different | ||
| 14 | arguments. | ||
| 15 | (modify_event_symbol): Rename NAME_ALIST to NAME_ALIST_OR_STEM. | ||
| 16 | Accept a string for NAME_ALIST_OR_STEM. | ||
| 17 | |||
| 18 | * lisp.h (larger_vector): Add prototype. | ||
| 19 | |||
| 20 | * fns.c (larger_vector): Make externally visible. | ||
| 21 | |||
| 22 | * termhooks.h (NUM_MOUSE_BUTTONS): Removed. | ||
| 23 | |||
| 1 | 2000-04-02 Stefan Monnier <monnier@cs.yale.edu> | 24 | 2000-04-02 Stefan Monnier <monnier@cs.yale.edu> |
| 2 | 25 | ||
| 3 | * regex.c (PTR_TO_OFFSET) [!emacs]: Remove. | 26 | * regex.c (PTR_TO_OFFSET) [!emacs]: Remove. |
| @@ -66,13 +89,13 @@ | |||
| 66 | (handle_fontified_prop, add_to_log): Pass int, not Lisp_Object, as | 89 | (handle_fontified_prop, add_to_log): Pass int, not Lisp_Object, as |
| 67 | count arg to variable-arg routines like Frun_hook_with_args and | 90 | count arg to variable-arg routines like Frun_hook_with_args and |
| 68 | Fformat. | 91 | Fformat. |
| 69 | (back_to_previous_visible_line_start, | 92 | (back_to_previous_visible_line_start) |
| 70 | build_desired_tool_bar_string): Pass Lisp_Object, not int, to | 93 | (build_desired_tool_bar_string): Pass Lisp_Object, not int, to |
| 71 | fixed-arg routines like Fget_char_property and Fmake_string. | 94 | fixed-arg routines like Fget_char_property and Fmake_string. |
| 72 | (reconsider_clip_changes): Use XINT when comparing integer lisp | 95 | (reconsider_clip_changes): Use XINT when comparing integer lisp |
| 73 | objects, or passing them as int arguments. | 96 | objects, or passing them as int arguments. |
| 74 | (mark_window_display_accurate, insert_left_trunc_glyphs, | 97 | (mark_window_display_accurate, insert_left_trunc_glyphs) |
| 75 | append_space, extend_face_to_end_of_line): Use make_number when | 98 | (append_space, extend_face_to_end_of_line): Use make_number when |
| 76 | storing or passing integer values as lisp objects. | 99 | storing or passing integer values as lisp objects. |
| 77 | (set_cursor_from_row, highlight_trailing_whitespace): Use | 100 | (set_cursor_from_row, highlight_trailing_whitespace): Use |
| 78 | INTEGERP, not implicit test against zero, for glyph object. | 101 | INTEGERP, not implicit test against zero, for glyph object. |
diff --git a/src/termhooks.h b/src/termhooks.h index cd7476b93c9..b6050cde256 100644 --- a/src/termhooks.h +++ b/src/termhooks.h | |||
| @@ -363,9 +363,6 @@ extern int (*read_socket_hook) P_ ((int, struct input_event *, int, int)); | |||
| 363 | /* Called when a frame's display becomes entirely up to date. */ | 363 | /* Called when a frame's display becomes entirely up to date. */ |
| 364 | extern void (*frame_up_to_date_hook) P_ ((struct frame *)); | 364 | extern void (*frame_up_to_date_hook) P_ ((struct frame *)); |
| 365 | 365 | ||
| 366 | /* This is used in keyboard.c, to tell how many buttons we will need | ||
| 367 | to track the positions of. */ | ||
| 368 | #define NUM_MOUSE_BUTTONS 15 | ||
| 369 | 366 | ||
| 370 | /* Bits in the modifiers member of the input_event structure. | 367 | /* Bits in the modifiers member of the input_event structure. |
| 371 | Note that reorder_modifiers assumes that the bits are in canonical | 368 | Note that reorder_modifiers assumes that the bits are in canonical |