aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1994-09-19 00:14:16 +0000
committerKarl Heuer1994-09-19 00:14:16 +0000
commit75f00e7298fb3ef375d155eced919da66bb47f4b (patch)
treec2c1448adf3dabfbfaf8152bd6ef8bf96545c99c /src
parentc8951b1855aebaf5cd9abc1a51e7138d44bb624f (diff)
downloademacs-75f00e7298fb3ef375d155eced919da66bb47f4b.tar.gz
emacs-75f00e7298fb3ef375d155eced919da66bb47f4b.zip
(read_minibuf): Fix Lisp_Object vs. int problems.
Diffstat (limited to 'src')
-rw-r--r--src/minibuf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/minibuf.c b/src/minibuf.c
index 5f866d52381..1a359e91f51 100644
--- a/src/minibuf.c
+++ b/src/minibuf.c
@@ -163,7 +163,7 @@ read_minibuf (map, initial, prompt, backup_n, expflag, histvar, histpos)
163 /* If the minibuffer window is on a different frame, save that 163 /* If the minibuffer window is on a different frame, save that
164 frame's configuration too. */ 164 frame's configuration too. */
165#ifdef MULTI_FRAME 165#ifdef MULTI_FRAME
166 XSET (mini_frame, Lisp_Frame, WINDOW_FRAME (XWINDOW (minibuf_window))); 166 mini_frame = WINDOW_FRAME (XWINDOW (minibuf_window));
167 if (XFRAME (mini_frame) != selected_frame) 167 if (XFRAME (mini_frame) != selected_frame)
168 record_unwind_protect (Fset_window_configuration, 168 record_unwind_protect (Fset_window_configuration,
169 Fcurrent_window_configuration (mini_frame)); 169 Fcurrent_window_configuration (mini_frame));