diff options
| author | Andreas Schwab | 2005-09-18 16:30:27 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2005-09-18 16:30:27 +0000 |
| commit | 9f1cf0e3c909388fb5e886cc9516771960d69e04 (patch) | |
| tree | 289ee7277f6c805b05f9805198f2efa8e14acb2c /src | |
| parent | 3df0580e89980427bea3ef1f0a81f0a1ea68f0e9 (diff) | |
| download | emacs-9f1cf0e3c909388fb5e886cc9516771960d69e04.tar.gz emacs-9f1cf0e3c909388fb5e886cc9516771960d69e04.zip | |
(struct window): Remove height_fixed_p, no longer set.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 7 | ||||
| -rw-r--r-- | src/window.h | 5 |
2 files changed, 7 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 04c375db271..63b19dcca5e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2005-09-18 Andreas Schwab <schwab@suse.de> | ||
| 2 | |||
| 3 | * window.h (struct window): Remove height_fixed_p, no longer set. | ||
| 4 | |||
| 5 | * window.c (make_window): Don't initialize height_fixed_p. | ||
| 6 | (window_fixed_size_p): Don't use it. | ||
| 7 | |||
| 1 | 2005-09-18 John Paul Wallington <jpw@pobox.com> | 8 | 2005-09-18 John Paul Wallington <jpw@pobox.com> |
| 2 | 9 | ||
| 3 | * data.c (Fdefalias): Signal an error if SYMBOL is not a symbol. | 10 | * data.c (Fdefalias): Signal an error if SYMBOL is not a symbol. |
diff --git a/src/window.h b/src/window.h index df359f37db2..46d75de384f 100644 --- a/src/window.h +++ b/src/window.h | |||
| @@ -290,11 +290,6 @@ struct window | |||
| 290 | be changed during redisplay. If point is not in the window, | 290 | be changed during redisplay. If point is not in the window, |
| 291 | accept that. */ | 291 | accept that. */ |
| 292 | unsigned frozen_window_start_p : 1; | 292 | unsigned frozen_window_start_p : 1; |
| 293 | |||
| 294 | /* 1 means that this window's height is temporarily fixed. Used | ||
| 295 | in resize_mini_window to precent resizing selected_window, if | ||
| 296 | possible. */ | ||
| 297 | unsigned height_fixed_p : 1; | ||
| 298 | }; | 293 | }; |
| 299 | 294 | ||
| 300 | /* 1 if W is a minibuffer window. */ | 295 | /* 1 if W is a minibuffer window. */ |