comparison src/window.c @ 43713:f92c4d87863a

Change defvar_int def and vars to use EMACS_INT instead of just int.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Mon, 04 Mar 2002 23:41:00 +0000
parents a38ac87b3085
children d94cb7b3b165
comparison
equal deleted inserted replaced
43712:223f1f5d160d 43713:f92c4d87863a
143 minibuffer is active. */ 143 minibuffer is active. */
144 int mode_line_in_non_selected_windows; 144 int mode_line_in_non_selected_windows;
145 145
146 /* If a window gets smaller than either of these, it is removed. */ 146 /* If a window gets smaller than either of these, it is removed. */
147 147
148 int window_min_height; 148 EMACS_INT window_min_height;
149 int window_min_width; 149 EMACS_INT window_min_width;
150 150
151 /* Nonzero implies Fdisplay_buffer should create windows. */ 151 /* Nonzero implies Fdisplay_buffer should create windows. */
152 152
153 int pop_up_windows; 153 int pop_up_windows;
154 154
197 Lisp_Object Qtemp_buffer_show_hook; 197 Lisp_Object Qtemp_buffer_show_hook;
198 198
199 /* Fdisplay_buffer always splits the largest window 199 /* Fdisplay_buffer always splits the largest window
200 if that window is more than this high. */ 200 if that window is more than this high. */
201 201
202 int split_height_threshold; 202 EMACS_INT split_height_threshold;
203 203
204 /* Number of lines of continuity in scrolling by screenfuls. */ 204 /* Number of lines of continuity in scrolling by screenfuls. */
205 205
206 int next_screen_context_lines; 206 EMACS_INT next_screen_context_lines;
207 207
208 /* Incremented for each window created. */ 208 /* Incremented for each window created. */
209 209
210 static int sequence_number; 210 static int sequence_number;
211 211
226 #if 0 /* This isn't used anywhere. */ 226 #if 0 /* This isn't used anywhere. */
227 /* Nonzero means we can split a frame even if it is "unsplittable". */ 227 /* Nonzero means we can split a frame even if it is "unsplittable". */
228 static int inhibit_frame_unsplittable; 228 static int inhibit_frame_unsplittable;
229 #endif /* 0 */ 229 #endif /* 0 */
230 230
231 extern int scroll_margin; 231 extern EMACS_INT scroll_margin;
232 232
233 extern Lisp_Object Qwindow_scroll_functions, Vwindow_scroll_functions; 233 extern Lisp_Object Qwindow_scroll_functions, Vwindow_scroll_functions;
234 234
235 DEFUN ("windowp", Fwindowp, Swindowp, 1, 1, 0, 235 DEFUN ("windowp", Fwindowp, Swindowp, 1, 1, 0,
236 doc: /* Returns t if OBJECT is a window. */) 236 doc: /* Returns t if OBJECT is a window. */)