comparison src/term.c @ 732:a8d94735277e

*** empty log message ***
author Jim Blandy <jimb@redhat.com>
date Tue, 30 Jun 1992 13:54:21 +0000
parents eca8812e61cd
children e4093444f9f8
comparison
equal deleted inserted replaced
731:5c6db33a9ef6 732:a8d94735277e
41 #define OUTPUT1_IF(a) { if (a) tputs (a, 1, cmputc); } 41 #define OUTPUT1_IF(a) { if (a) tputs (a, 1, cmputc); }
42 42
43 /* Terminal charateristics that higher levels want to look at. 43 /* Terminal charateristics that higher levels want to look at.
44 These are all extern'd in termchar.h */ 44 These are all extern'd in termchar.h */
45 45
46 #ifndef MULTI_SCREEN
47 int screen_width; /* Number of usable columns */
48 int screen_height; /* Number of lines */
49 #endif
50
51 int must_write_spaces; /* Nonzero means spaces in the text 46 int must_write_spaces; /* Nonzero means spaces in the text
52 must actually be output; can't just skip 47 must actually be output; can't just skip
53 over some columns to leave them blank. */ 48 over some columns to leave them blank. */
54 int min_padding_speed; /* Speed below which no padding necessary */ 49 int min_padding_speed; /* Speed below which no padding necessary */
55 50
101 /* Return the current position of the mouse. This should clear 96 /* Return the current position of the mouse. This should clear
102 mouse_moved until the next motion event arrives. */ 97 mouse_moved until the next motion event arrives. */
103 void (*mouse_position_hook) ( /* SCREEN_PTR *s, 98 void (*mouse_position_hook) ( /* SCREEN_PTR *s,
104 Lisp_Object *x, 99 Lisp_Object *x,
105 Lisp_Object *y, 100 Lisp_Object *y,
106 Lisp_Object *time */ ); 101 unsigned long *time */ );
107 102
108 /* When reading from a minibuffer in a different screen, Emacs wants 103 /* When reading from a minibuffer in a different screen, Emacs wants
109 to shift the highlight from the selected screen to the minibuffer's 104 to shift the highlight from the selected screen to the minibuffer's
110 screen; under X, this means it lies about where the focus is. 105 screen; under X, this means it lies about where the focus is.
111 This hook tells the window system code to re-decide where to put 106 This hook tells the window system code to re-decide where to put