Mercurial > emacs
changeset 8899:81103c53aa59
(read_minibuf): Fix Lisp_Object vs. int problems.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Mon, 19 Sep 1994 00:14:16 +0000 |
parents | 07bca49c7f84 |
children | 3c6b5ba4d559 |
files | src/minibuf.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/minibuf.c Mon Sep 19 00:13:35 1994 +0000 +++ b/src/minibuf.c Mon Sep 19 00:14:16 1994 +0000 @@ -163,7 +163,7 @@ /* If the minibuffer window is on a different frame, save that frame's configuration too. */ #ifdef MULTI_FRAME - XSET (mini_frame, Lisp_Frame, WINDOW_FRAME (XWINDOW (minibuf_window))); + mini_frame = WINDOW_FRAME (XWINDOW (minibuf_window)); if (XFRAME (mini_frame) != selected_frame) record_unwind_protect (Fset_window_configuration, Fcurrent_window_configuration (mini_frame));