aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.c
diff options
context:
space:
mode:
authorStefan Monnier2002-03-04 23:41:00 +0000
committerStefan Monnier2002-03-04 23:41:00 +0000
commit31ade731e6dc0c0a4c124f93a1f0018e245a27a2 (patch)
tree4ff60d1528615a7a75b53df5043ab0753c5eca51 /src/window.c
parentc01d0677abc9f0f2645e90ed1e23619c008e90a2 (diff)
downloademacs-31ade731e6dc0c0a4c124f93a1f0018e245a27a2.tar.gz
emacs-31ade731e6dc0c0a4c124f93a1f0018e245a27a2.zip
Change defvar_int def and vars to use EMACS_INT instead of just int.
Diffstat (limited to 'src/window.c')
-rw-r--r--src/window.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/window.c b/src/window.c
index 9dc070bc498..8b9b49f5f12 100644
--- a/src/window.c
+++ b/src/window.c
@@ -145,8 +145,8 @@ 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
148int window_min_height; 148EMACS_INT window_min_height;
149int window_min_width; 149EMACS_INT window_min_width;
150 150
151/* Nonzero implies Fdisplay_buffer should create windows. */ 151/* Nonzero implies Fdisplay_buffer should create windows. */
152 152
@@ -199,11 +199,11 @@ Lisp_Object Qtemp_buffer_show_hook;
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
202int split_height_threshold; 202EMACS_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
206int next_screen_context_lines; 206EMACS_INT next_screen_context_lines;
207 207
208/* Incremented for each window created. */ 208/* Incremented for each window created. */
209 209
@@ -228,7 +228,7 @@ Lisp_Object Vscroll_preserve_screen_position;
228static int inhibit_frame_unsplittable; 228static int inhibit_frame_unsplittable;
229#endif /* 0 */ 229#endif /* 0 */
230 230
231extern int scroll_margin; 231extern EMACS_INT scroll_margin;
232 232
233extern Lisp_Object Qwindow_scroll_functions, Vwindow_scroll_functions; 233extern Lisp_Object Qwindow_scroll_functions, Vwindow_scroll_functions;
234 234