diff options
| author | Stefan Monnier | 2002-03-04 23:41:00 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2002-03-04 23:41:00 +0000 |
| commit | 31ade731e6dc0c0a4c124f93a1f0018e245a27a2 (patch) | |
| tree | 4ff60d1528615a7a75b53df5043ab0753c5eca51 /src/window.c | |
| parent | c01d0677abc9f0f2645e90ed1e23619c008e90a2 (diff) | |
| download | emacs-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.c | 10 |
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 | ||
| 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 | ||
| @@ -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 | ||
| 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 | ||
| @@ -228,7 +228,7 @@ Lisp_Object Vscroll_preserve_screen_position; | |||
| 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 | ||