Mercurial > emacs
changeset 966:eb74884fc95a
* keyboard.c (Fsuspend_emacs): Call change_frame_size with the
proper arguments - the height and width are the second and third
arguments, not the first and second. Pass 0 for DELAY.
* keyboard.c (FRAME_IS_TERMCAP, FRAME_IS_X,
FRAME_HAS_MINIBUF): Renamed these to FRAME_TERMCAP_P,
FRAME_X_P, and FRAME_HAS_MINIBUF_P, for consistency with the
rest of the frame macros.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Wed, 12 Aug 1992 14:05:56 +0000 |
parents | 0eb68c6c452a |
children | 6df04dcbd2e9 |
files | src/keyboard.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/keyboard.c Wed Aug 12 13:55:21 1992 +0000 +++ b/src/keyboard.c Wed Aug 12 14:05:56 1992 +0000 @@ -851,7 +851,7 @@ #if 0 #ifdef HAVE_X_WINDOWS - if (FRAME_IS_X (selected_frame)) + if (FRAME_X_P (selected_frame)) { if (i == -1) /* Mouse event */ { @@ -3210,7 +3210,7 @@ with a window system; but suspend should be disabled in that case. */ get_frame_size (&width, &height); if (width != old_width || height != old_height) - change_frame_size (height, width, 0); + change_frame_size (0, height, width, 0, 0); /* Call value of suspend-resume-hook if it is bound and value is non-nil. */ @@ -3313,7 +3313,7 @@ cancel_echoing (); - if (!NILP (Vquit_flag) && FRAME_IS_TERMCAP (selected_frame)) + if (!NILP (Vquit_flag) && FRAME_TERMCAP_P (selected_frame)) { fflush (stdout); reset_sys_modes ();