Mercurial > hg > xemacs-beta
comparison src/frame.h @ 647:b39c14581166
[xemacs-hg @ 2001-08-13 04:45:47 by ben]
removal of unsigned, size_t, etc.
author | ben |
---|---|
date | Mon, 13 Aug 2001 04:46:48 +0000 |
parents | af57a77cbc92 |
children | 943eaba38521 |
comparison
equal
deleted
inserted
replaced
646:00c54252fe4f | 647:b39c14581166 |
---|---|
103 | 103 |
104 #ifdef HAVE_TOOLBARS | 104 #ifdef HAVE_TOOLBARS |
105 /* Size of toolbars as seen by redisplay. This is used to determine | 105 /* Size of toolbars as seen by redisplay. This is used to determine |
106 whether to re-layout windows by a call to change_frame_size early | 106 whether to re-layout windows by a call to change_frame_size early |
107 in redisplay_frame. */ | 107 in redisplay_frame. */ |
108 unsigned int current_toolbar_size[4]; | 108 int current_toolbar_size[4]; |
109 #endif | 109 #endif |
110 | 110 |
111 /* Size of gutters as seen by redisplay. This is used to determine | 111 /* Size of gutters as seen by redisplay. This is used to determine |
112 whether to re-layout windows by a call to change_frame_size early | 112 whether to re-layout windows by a call to change_frame_size early |
113 in redisplay_frame. */ | 113 in redisplay_frame. */ |
114 unsigned int current_gutter_bounds[4]; | 114 int current_gutter_bounds[4]; |
115 | 115 |
116 /* Dynamic arrays of display lines for gutters */ | 116 /* Dynamic arrays of display lines for gutters */ |
117 display_line_dynarr *current_display_lines[4]; | 117 display_line_dynarr *current_display_lines[4]; |
118 display_line_dynarr *desired_display_lines[4]; | 118 display_line_dynarr *desired_display_lines[4]; |
119 | 119 |