diff options
| author | Jim Blandy | 1992-11-07 07:35:49 +0000 |
|---|---|---|
| committer | Jim Blandy | 1992-11-07 07:35:49 +0000 |
| commit | 33b1baf632e17900a0680d81fd9b7d3c3af1130a (patch) | |
| tree | c2e833bcb4effdca5b0c09567f607a873e95767d /src | |
| parent | f1b76ec09b463f0208be7c19fa6365d2fe02a9f0 (diff) | |
| download | emacs-33b1baf632e17900a0680d81fd9b7d3c3af1130a.tar.gz emacs-33b1baf632e17900a0680d81fd9b7d3c3af1130a.zip | |
* minibuf.c (read_minibuf): Protect call to Fredirect_frame_focus
with a #ifdef MULTI_FRAME.
Diffstat (limited to 'src')
| -rw-r--r-- | src/minibuf.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/minibuf.c b/src/minibuf.c index 378deebc900..62de9d9b15a 100644 --- a/src/minibuf.c +++ b/src/minibuf.c | |||
| @@ -162,7 +162,9 @@ read_minibuf (map, initial, prompt, backup_n, expflag, histvar, histpos) | |||
| 162 | val = current_buffer->directory; | 162 | val = current_buffer->directory; |
| 163 | Fset_buffer (get_minibuffer (minibuf_level)); | 163 | Fset_buffer (get_minibuffer (minibuf_level)); |
| 164 | current_buffer->directory = val; | 164 | current_buffer->directory = val; |
| 165 | #ifdef MULTI_FRAME | ||
| 165 | Fredirect_frame_focus (Fselected_frame (), mini_frame); | 166 | Fredirect_frame_focus (Fselected_frame (), mini_frame); |
| 167 | #endif | ||
| 166 | Fmake_local_variable (Qprint_escape_newlines); | 168 | Fmake_local_variable (Qprint_escape_newlines); |
| 167 | print_escape_newlines = 1; | 169 | print_escape_newlines = 1; |
| 168 | 170 | ||