diff options
| author | Gerd Moellmann | 1999-09-04 20:11:12 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 1999-09-04 20:11:12 +0000 |
| commit | 8a37516b4af3fb2b95886b7fa149d4b1717b99c1 (patch) | |
| tree | 1db9e1e39914ffa250be36c202cb06cc915aa838 /src | |
| parent | c5092f3e57b7ce5118d99812012a23248b39b568 (diff) | |
| download | emacs-8a37516b4af3fb2b95886b7fa149d4b1717b99c1.tar.gz emacs-8a37516b4af3fb2b95886b7fa149d4b1717b99c1.zip | |
(Qwindow_size_fixed): Replaces Qfixed_window_size.
(window_fixed_size_p): Use Qwindow_size_fixed instead of
Qfixed_window_size.
(syms_of_window): Ditto.
Diffstat (limited to 'src')
| -rw-r--r-- | src/window.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/window.c b/src/window.c index a517b627218..e5cb271642d 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -43,7 +43,7 @@ Boston, MA 02111-1307, USA. */ | |||
| 43 | 43 | ||
| 44 | 44 | ||
| 45 | Lisp_Object Qwindowp, Qwindow_live_p, Qwindow_configuration_p; | 45 | Lisp_Object Qwindowp, Qwindow_live_p, Qwindow_configuration_p; |
| 46 | Lisp_Object Qfixed_window_size, Qleft_bitmap_area, Qright_bitmap_area; | 46 | Lisp_Object Qwindow_size_fixed, Qleft_bitmap_area, Qright_bitmap_area; |
| 47 | extern Lisp_Object Qheight, Qwidth; | 47 | extern Lisp_Object Qheight, Qwidth; |
| 48 | 48 | ||
| 49 | static struct window *decode_window P_ ((Lisp_Object)); | 49 | static struct window *decode_window P_ ((Lisp_Object)); |
| @@ -1974,7 +1974,7 @@ window_fixed_size_p (w, width_p, check_siblings_p) | |||
| 1974 | struct buffer *old = current_buffer; | 1974 | struct buffer *old = current_buffer; |
| 1975 | 1975 | ||
| 1976 | current_buffer = XBUFFER (w->buffer); | 1976 | current_buffer = XBUFFER (w->buffer); |
| 1977 | val = find_symbol_value (Qfixed_window_size); | 1977 | val = find_symbol_value (Qwindow_size_fixed); |
| 1978 | current_buffer = old; | 1978 | current_buffer = old; |
| 1979 | 1979 | ||
| 1980 | fixed_p = 0; | 1980 | fixed_p = 0; |
| @@ -4900,8 +4900,8 @@ syms_of_window () | |||
| 4900 | Qright_bitmap_area = intern ("right-bitmap-area"); | 4900 | Qright_bitmap_area = intern ("right-bitmap-area"); |
| 4901 | staticpro (&Qright_bitmap_area); | 4901 | staticpro (&Qright_bitmap_area); |
| 4902 | 4902 | ||
| 4903 | Qfixed_window_size = intern ("fixed-window-size"); | 4903 | Qwindow_size_fixed = intern ("window-size-fixed"); |
| 4904 | staticpro (&Qfixed_window_size); | 4904 | staticpro (&Qwindow_size_fixed); |
| 4905 | 4905 | ||
| 4906 | staticpro (&Qwindow_configuration_change_hook); | 4906 | staticpro (&Qwindow_configuration_change_hook); |
| 4907 | Qwindow_configuration_change_hook | 4907 | Qwindow_configuration_change_hook |