comparison src/termhooks.h @ 357:1ad871406b12

*** empty log message ***
author Jim Blandy <jimb@redhat.com>
date Sat, 27 Jul 1991 03:27:24 +0000
parents 4840aae6a876
children 8c615e453683
comparison
equal deleted inserted replaced
356:5b180834eacf 357:1ad871406b12
61 If called with ENABLE zero, the window system event handler should 61 If called with ENABLE zero, the window system event handler should
62 ignore mouse movement events, and not enqueue events for mouse 62 ignore mouse movement events, and not enqueue events for mouse
63 button releases. */ 63 button releases. */
64 extern int (*mouse_tracking_enable_hook) ( /* int ENABLE */ ); 64 extern int (*mouse_tracking_enable_hook) ( /* int ENABLE */ );
65 65
66 /* When reading from a minibuffer in a different screen, Emacs wants 66 /* When a screen's focus redirection is changed, this hook tells the
67 to shift the highlight from the selected screen to the minibuffer's 67 window system code to re-decide where to put the highlight. Under
68 screen; under X, this means it lies about where the focus is. 68 X, this means that the system lies about where the focus is. */
69 This hook tells the window system code to re-decide where to put 69 extern void (*screen_rehighlight_hook) ( /* void */ );
70 the highlight. */
71 extern void (*screen_rehighlight_hook) ( /* SCREEN_PTR s */ );
72 70
73 /* If nonzero, send all terminal output characters to this stream also. */ 71 /* If nonzero, send all terminal output characters to this stream also. */
74 72
75 extern FILE *termscript; 73 extern FILE *termscript;
76 74