diff options
| author | Richard M. Stallman <rms@gnu.org> | 1993-03-15 05:50:55 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1993-03-15 05:50:55 +0000 |
| commit | 70728a80cb7f0cf5ce5259f5e655113e4973fd07 (patch) | |
| tree | 907113d9728815208b29eff8d812a2c0a1d19c13 | |
| parent | 2d66ad19c51cf44225d8ea6917a5db4364630a93 (diff) | |
| download | emacs-70728a80cb7f0cf5ce5259f5e655113e4973fd07.tar.gz | |
(Fdelete_other_windows): Handle FRAME_MENU_BAR_LINES.
| -rw-r--r-- | src/window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/window.c b/src/window.c index ab81e806aba..0f00ae64ef1 100644 --- a/src/window.c +++ b/src/window.c @@ -1283,11 +1283,11 @@ Only the frame WINDOW is on is affected.") w = XWINDOW (window); top = XFASTINT (w->top); - window_loop (DELETE_OTHER_WINDOWS, window, 0, WINDOW_FRAME(w)); + window_loop (DELETE_OTHER_WINDOWS, window, 0, WINDOW_FRAME (w)); Fset_buffer (w->buffer); SET_PT (marker_position (w->start)); - Frecenter (make_number (top)); + Frecenter (make_number (top - FRAME_MENU_BAR_LINES (XFRAME (WINDOW_FRAME (w))))); set_buffer_internal (obuf); SET_PT (opoint); |
