diff options
| author | Richard M. Stallman | 1996-06-10 21:01:22 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-06-10 21:01:22 +0000 |
| commit | e4e597170949bf7e358712040d3d15f42de1a093 (patch) | |
| tree | 8ab2aa2ee56ee0f58083ac783a230ddeef14abf0 /src | |
| parent | 6ba86f3775c8b1eb81c3cc4a43410324de40eed2 (diff) | |
| download | emacs-e4e597170949bf7e358712040d3d15f42de1a093.tar.gz emacs-e4e597170949bf7e358712040d3d15f42de1a093.zip | |
Whitespace and #if 0 code changes.
Diffstat (limited to 'src')
| -rw-r--r-- | src/window.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/window.c b/src/window.c index d111bbb8523..6d635a5d587 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -3086,7 +3086,7 @@ by `current-window-configuration' (which see).") | |||
| 3086 | if (XFASTINT (data->frame_height) != previous_frame_height | 3086 | if (XFASTINT (data->frame_height) != previous_frame_height |
| 3087 | || XFASTINT (data->frame_width) != previous_frame_width) | 3087 | || XFASTINT (data->frame_width) != previous_frame_width) |
| 3088 | change_frame_size (f, data->frame_height, data->frame_width, 0, 0); | 3088 | change_frame_size (f, data->frame_height, data->frame_width, 0, 0); |
| 3089 | #if defined(HAVE_WINDOW_SYSTEM) || (defined(MSDOS) && defined(MULTI_FRAME)) | 3089 | #if defined (HAVE_WINDOW_SYSTEM) || (defined (MSDOS) && defined (MULTI_FRAME)) |
| 3090 | if (XFASTINT (data->frame_menu_bar_lines) | 3090 | if (XFASTINT (data->frame_menu_bar_lines) |
| 3091 | != previous_frame_menu_bar_lines) | 3091 | != previous_frame_menu_bar_lines) |
| 3092 | x_set_menu_bar_lines (f, data->frame_menu_bar_lines, 0); | 3092 | x_set_menu_bar_lines (f, data->frame_menu_bar_lines, 0); |
| @@ -3224,7 +3224,7 @@ by `current-window-configuration' (which see).") | |||
| 3224 | #if 0 /* I don't understand why this is needed, and it causes problems | 3224 | #if 0 /* I don't understand why this is needed, and it causes problems |
| 3225 | when the frame's old selected window has been deleted. */ | 3225 | when the frame's old selected window has been deleted. */ |
| 3226 | #ifdef MULTI_FRAME | 3226 | #ifdef MULTI_FRAME |
| 3227 | if (f != selected_frame && ! FRAME_TERMCAP_P (f) && ! FRAME_MSDOS_P (f)) | 3227 | if (f != selected_frame && FRAME_WINDOW_P (f)) |
| 3228 | do_switch_frame (WINDOW_FRAME (XWINDOW (data->root_window)), | 3228 | do_switch_frame (WINDOW_FRAME (XWINDOW (data->root_window)), |
| 3229 | Qnil, 0); | 3229 | Qnil, 0); |
| 3230 | #endif | 3230 | #endif |
| @@ -3235,7 +3235,7 @@ by `current-window-configuration' (which see).") | |||
| 3235 | || previous_frame_width != FRAME_WIDTH (f)) | 3235 | || previous_frame_width != FRAME_WIDTH (f)) |
| 3236 | change_frame_size (f, previous_frame_height, previous_frame_width, | 3236 | change_frame_size (f, previous_frame_height, previous_frame_width, |
| 3237 | 0, 0); | 3237 | 0, 0); |
| 3238 | #if defined(HAVE_WINDOW_SYSTEM) || (defined(MSDOS) && defined(MULTI_FRAME)) | 3238 | #if defined (HAVE_WINDOW_SYSTEM) || (defined (MSDOS) && defined (MULTI_FRAME)) |
| 3239 | if (previous_frame_menu_bar_lines != FRAME_MENU_BAR_LINES (f)) | 3239 | if (previous_frame_menu_bar_lines != FRAME_MENU_BAR_LINES (f)) |
| 3240 | x_set_menu_bar_lines (f, previous_frame_menu_bar_lines, 0); | 3240 | x_set_menu_bar_lines (f, previous_frame_menu_bar_lines, 0); |
| 3241 | #endif | 3241 | #endif |