aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.h
diff options
context:
space:
mode:
authorGerd Moellmann2000-12-20 15:36:07 +0000
committerGerd Moellmann2000-12-20 15:36:07 +0000
commit0248728d0dd9cfd23042ba7c4b33f772b98f28f7 (patch)
treeb2230fe48552eeb58f008f34254462e0bdf4fd26 /src/window.h
parent102d8a221677b20dfefa0bd612b634ceb4ccd17b (diff)
downloademacs-0248728d0dd9cfd23042ba7c4b33f772b98f28f7.tar.gz
emacs-0248728d0dd9cfd23042ba7c4b33f772b98f28f7.zip
(struct window): New member min_hscroll.
Diffstat (limited to 'src/window.h')
-rw-r--r--src/window.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/window.h b/src/window.h
index 6ac7e5424a5..c5737ef7238 100644
--- a/src/window.h
+++ b/src/window.h
@@ -132,6 +132,9 @@ struct window
132 Lisp_Object optional_new_start; 132 Lisp_Object optional_new_start;
133 /* Number of columns display within the window is scrolled to the left. */ 133 /* Number of columns display within the window is scrolled to the left. */
134 Lisp_Object hscroll; 134 Lisp_Object hscroll;
135 /* Minimum hscroll for automatic hscrolling. This is the value
136 the user has set, by set-window-hscroll for example. */
137 Lisp_Object min_hscroll;
135 /* Number saying how recently window was selected */ 138 /* Number saying how recently window was selected */
136 Lisp_Object use_time; 139 Lisp_Object use_time;
137 /* Unique number of window assigned when it was created */ 140 /* Unique number of window assigned when it was created */