diff options
author | Dmitry Antipov <dmantipov@yandex.ru> | 2013-03-31 09:45:54 +0400 |
---|---|---|
committer | Dmitry Antipov <dmantipov@yandex.ru> | 2013-03-31 09:45:54 +0400 |
commit | 9275998872e6932aee942f8805ac06220688c009 (patch) | |
tree | 3801728a0cddd93e492dd53be6bace848f83cf57 /src/frame.h | |
parent | 78b8f32044a91adcf8d60d937beae2184247a78c (diff) |
* frame.h (struct frame): Drop scroll_bottom_vpos
member becaue all real users are dead long ago.
(FRAME_SCROLL_BOTTOM_VPOS): Remove.
* xdisp.c (redisplay_internal): Adjust user.
Diffstat (limited to 'src/frame.h')
-rw-r--r-- | src/frame.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/frame.h b/src/frame.h index 32a6954024..46e18dd8dd 100644 --- a/src/frame.h +++ b/src/frame.h @@ -427,10 +427,6 @@ struct frame /* Width of bar cursor (if we are using that) for blink-off state. */ int blink_off_cursor_width; - /* Nonnegative if current redisplay should not do scroll computation - for lines beyond a certain vpos. This is the vpos. */ - int scroll_bottom_vpos; - /* Configured width of the scroll bar, in pixels and in characters. config_scroll_bar_cols tracks config_scroll_bar_width if the latter is positive; a zero value in config_scroll_bar_width means @@ -785,7 +781,6 @@ typedef struct frame *FRAME_PTR; #define FRAME_DELETE_COST(f) (f)->delete_line_cost #define FRAME_INSERTN_COST(f) (f)->insert_n_lines_cost #define FRAME_DELETEN_COST(f) (f)->delete_n_lines_cost -#define FRAME_SCROLL_BOTTOM_VPOS(f) (f)->scroll_bottom_vpos #define FRAME_FOCUS_FRAME(f) f->focus_frame /* This frame slot says whether scroll bars are currently enabled for frame F, |