diff options
Diffstat (limited to 'src/window.c')
| -rw-r--r-- | src/window.c | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/src/window.c b/src/window.c index bb3b73f9acd..3b974616e38 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -133,102 +133,102 @@ static EMACS_INT window_scroll_preserve_hpos; | |||
| 133 | static EMACS_INT window_scroll_preserve_vpos; | 133 | static EMACS_INT window_scroll_preserve_vpos; |
| 134 | 134 | ||
| 135 | /* These setters are used only in this file, so they can be private. */ | 135 | /* These setters are used only in this file, so they can be private. */ |
| 136 | static inline void | 136 | static void |
| 137 | wset_combination_limit (struct window *w, Lisp_Object val) | 137 | wset_combination_limit (struct window *w, Lisp_Object val) |
| 138 | { | 138 | { |
| 139 | w->combination_limit = val; | 139 | w->combination_limit = val; |
| 140 | } | 140 | } |
| 141 | static inline void | 141 | static void |
| 142 | wset_dedicated (struct window *w, Lisp_Object val) | 142 | wset_dedicated (struct window *w, Lisp_Object val) |
| 143 | { | 143 | { |
| 144 | w->dedicated = val; | 144 | w->dedicated = val; |
| 145 | } | 145 | } |
| 146 | static inline void | 146 | static void |
| 147 | wset_display_table (struct window *w, Lisp_Object val) | 147 | wset_display_table (struct window *w, Lisp_Object val) |
| 148 | { | 148 | { |
| 149 | w->display_table = val; | 149 | w->display_table = val; |
| 150 | } | 150 | } |
| 151 | static inline void | 151 | static void |
| 152 | wset_hchild (struct window *w, Lisp_Object val) | 152 | wset_hchild (struct window *w, Lisp_Object val) |
| 153 | { | 153 | { |
| 154 | w->hchild = val; | 154 | w->hchild = val; |
| 155 | } | 155 | } |
| 156 | static inline void | 156 | static void |
| 157 | wset_left_fringe_width (struct window *w, Lisp_Object val) | 157 | wset_left_fringe_width (struct window *w, Lisp_Object val) |
| 158 | { | 158 | { |
| 159 | w->left_fringe_width = val; | 159 | w->left_fringe_width = val; |
| 160 | } | 160 | } |
| 161 | static inline void | 161 | static void |
| 162 | wset_left_margin_cols (struct window *w, Lisp_Object val) | 162 | wset_left_margin_cols (struct window *w, Lisp_Object val) |
| 163 | { | 163 | { |
| 164 | w->left_margin_cols = val; | 164 | w->left_margin_cols = val; |
| 165 | } | 165 | } |
| 166 | static inline void | 166 | static void |
| 167 | wset_new_normal (struct window *w, Lisp_Object val) | 167 | wset_new_normal (struct window *w, Lisp_Object val) |
| 168 | { | 168 | { |
| 169 | w->new_normal = val; | 169 | w->new_normal = val; |
| 170 | } | 170 | } |
| 171 | static inline void | 171 | static void |
| 172 | wset_new_total (struct window *w, Lisp_Object val) | 172 | wset_new_total (struct window *w, Lisp_Object val) |
| 173 | { | 173 | { |
| 174 | w->new_total = val; | 174 | w->new_total = val; |
| 175 | } | 175 | } |
| 176 | static inline void | 176 | static void |
| 177 | wset_normal_cols (struct window *w, Lisp_Object val) | 177 | wset_normal_cols (struct window *w, Lisp_Object val) |
| 178 | { | 178 | { |
| 179 | w->normal_cols = val; | 179 | w->normal_cols = val; |
| 180 | } | 180 | } |
| 181 | static inline void | 181 | static void |
| 182 | wset_normal_lines (struct window *w, Lisp_Object val) | 182 | wset_normal_lines (struct window *w, Lisp_Object val) |
| 183 | { | 183 | { |
| 184 | w->normal_lines = val; | 184 | w->normal_lines = val; |
| 185 | } | 185 | } |
| 186 | static inline void | 186 | static void |
| 187 | wset_parent (struct window *w, Lisp_Object val) | 187 | wset_parent (struct window *w, Lisp_Object val) |
| 188 | { | 188 | { |
| 189 | w->parent = val; | 189 | w->parent = val; |
| 190 | } | 190 | } |
| 191 | static inline void | 191 | static void |
| 192 | wset_pointm (struct window *w, Lisp_Object val) | 192 | wset_pointm (struct window *w, Lisp_Object val) |
| 193 | { | 193 | { |
| 194 | w->pointm = val; | 194 | w->pointm = val; |
| 195 | } | 195 | } |
| 196 | static inline void | 196 | static void |
| 197 | wset_right_fringe_width (struct window *w, Lisp_Object val) | 197 | wset_right_fringe_width (struct window *w, Lisp_Object val) |
| 198 | { | 198 | { |
| 199 | w->right_fringe_width = val; | 199 | w->right_fringe_width = val; |
| 200 | } | 200 | } |
| 201 | static inline void | 201 | static void |
| 202 | wset_right_margin_cols (struct window *w, Lisp_Object val) | 202 | wset_right_margin_cols (struct window *w, Lisp_Object val) |
| 203 | { | 203 | { |
| 204 | w->right_margin_cols = val; | 204 | w->right_margin_cols = val; |
| 205 | } | 205 | } |
| 206 | static inline void | 206 | static void |
| 207 | wset_scroll_bar_width (struct window *w, Lisp_Object val) | 207 | wset_scroll_bar_width (struct window *w, Lisp_Object val) |
| 208 | { | 208 | { |
| 209 | w->scroll_bar_width = val; | 209 | w->scroll_bar_width = val; |
| 210 | } | 210 | } |
| 211 | static inline void | 211 | static void |
| 212 | wset_start (struct window *w, Lisp_Object val) | 212 | wset_start (struct window *w, Lisp_Object val) |
| 213 | { | 213 | { |
| 214 | w->start = val; | 214 | w->start = val; |
| 215 | } | 215 | } |
| 216 | static inline void | 216 | static void |
| 217 | wset_temslot (struct window *w, Lisp_Object val) | 217 | wset_temslot (struct window *w, Lisp_Object val) |
| 218 | { | 218 | { |
| 219 | w->temslot = val; | 219 | w->temslot = val; |
| 220 | } | 220 | } |
| 221 | static inline void | 221 | static void |
| 222 | wset_vchild (struct window *w, Lisp_Object val) | 222 | wset_vchild (struct window *w, Lisp_Object val) |
| 223 | { | 223 | { |
| 224 | w->vchild = val; | 224 | w->vchild = val; |
| 225 | } | 225 | } |
| 226 | static inline void | 226 | static void |
| 227 | wset_vertical_scroll_bar_type (struct window *w, Lisp_Object val) | 227 | wset_vertical_scroll_bar_type (struct window *w, Lisp_Object val) |
| 228 | { | 228 | { |
| 229 | w->vertical_scroll_bar_type = val; | 229 | w->vertical_scroll_bar_type = val; |
| 230 | } | 230 | } |
| 231 | static inline void | 231 | static void |
| 232 | wset_window_parameters (struct window *w, Lisp_Object val) | 232 | wset_window_parameters (struct window *w, Lisp_Object val) |
| 233 | { | 233 | { |
| 234 | w->window_parameters = val; | 234 | w->window_parameters = val; |