diff options
| author | Jim Blandy <jimb@redhat.com> | 1992-11-07 07:35:49 +0000 |
|---|---|---|
| committer | Jim Blandy <jimb@redhat.com> | 1992-11-07 07:35:49 +0000 |
| commit | 33b1baf632e17900a0680d81fd9b7d3c3af1130a (patch) | |
| tree | c2e833bcb4effdca5b0c09567f607a873e95767d | |
| parent | f1b76ec09b463f0208be7c19fa6365d2fe02a9f0 (diff) | |
| download | emacs-33b1baf632e17900a0680d81fd9b7d3c3af1130a.tar.gz | |
* minibuf.c (read_minibuf): Protect call to Fredirect_frame_focus
with a #ifdef MULTI_FRAME.
| -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) val = current_buffer->directory; Fset_buffer (get_minibuffer (minibuf_level)); current_buffer->directory = val; +#ifdef MULTI_FRAME Fredirect_frame_focus (Fselected_frame (), mini_frame); +#endif Fmake_local_variable (Qprint_escape_newlines); print_escape_newlines = 1; |
