Mercurial > emacs
comparison src/minibuf.c @ 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 | 0f20e5e19ed6 |
children | 69f0ae06bcdf |
comparison
equal
deleted
inserted
replaced
8898:07bca49c7f84 | 8899:81103c53aa59 |
---|---|
161 Fcurrent_window_configuration (Qnil)); | 161 Fcurrent_window_configuration (Qnil)); |
162 | 162 |
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)); |
170 | 170 |
171 /* If the minibuffer is on an iconified or invisible frame, | 171 /* If the minibuffer is on an iconified or invisible frame, |