diff options
| author | Jim Blandy | 1991-11-04 23:45:55 +0000 |
|---|---|---|
| committer | Jim Blandy | 1991-11-04 23:45:55 +0000 |
| commit | 69a46d1c0b461b854df23c297502cf95163aba68 (patch) | |
| tree | 1c56cff40bf1528516fab778aabb6e34ad95bb13 /src | |
| parent | 8828b3939d4b391fa8a31c396f34cf605d0271f8 (diff) | |
| download | emacs-69a46d1c0b461b854df23c297502cf95163aba68.tar.gz emacs-69a46d1c0b461b854df23c297502cf95163aba68.zip | |
*** empty log message ***
Diffstat (limited to 'src')
| -rw-r--r-- | src/term.c | 23 |
1 files changed, 6 insertions, 17 deletions
diff --git a/src/term.c b/src/term.c index 85e6bdc39e2..1f8d463bfc8 100644 --- a/src/term.c +++ b/src/term.c | |||
| @@ -97,23 +97,12 @@ int (*set_terminal_window_hook) (); | |||
| 97 | 97 | ||
| 98 | int (*read_socket_hook) (); | 98 | int (*read_socket_hook) (); |
| 99 | 99 | ||
| 100 | /* Hook for Emacs to call to tell the window-system-specific code to | 100 | /* Return the current position of the mouse. This should clear |
| 101 | enable/disable low-level tracking. The value of ENABLE tells the | 101 | mouse_moved until the next motion event arrives. */ |
| 102 | window system event handler whether it should notice or ignore | 102 | void (*mouse_position_hook) ( /* SCREEN_PTR *s, |
| 103 | subsequent mouse movement and mouse button releases. | 103 | Lisp_Object *x, |
| 104 | 104 | Lisp_Object *y, | |
| 105 | If this is 0, Emacs should assume that there is no mouse (or at | 105 | Lisp_Object *time */ ); |
| 106 | least no mouse tracking) available. | ||
| 107 | |||
| 108 | If called with ENABLE non-zero, the window system event handler | ||
| 109 | should call set_pointer_loc with the new mouse co-ordinates | ||
| 110 | whenever the mouse moves, and enqueue a mouse button event for | ||
| 111 | button releases as well as button presses. | ||
| 112 | |||
| 113 | If called with ENABLE zero, the window system event handler should | ||
| 114 | ignore mouse movement events, and not enqueue events for mouse | ||
| 115 | button releases. */ | ||
| 116 | int (*mouse_tracking_enable_hook) ( /* int ENABLE */ ); | ||
| 117 | 106 | ||
| 118 | /* When reading from a minibuffer in a different screen, Emacs wants | 107 | /* When reading from a minibuffer in a different screen, Emacs wants |
| 119 | to shift the highlight from the selected screen to the minibuffer's | 108 | to shift the highlight from the selected screen to the minibuffer's |