diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/frame.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/frame.c b/src/frame.c index a1c2199d044..f3a548cbce7 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -1067,6 +1067,10 @@ affects all frames on the same terminal device. */) | |||
| 1067 | (t->display_info.tty->name | 1067 | (t->display_info.tty->name |
| 1068 | ? build_string (t->display_info.tty->name) | 1068 | ? build_string (t->display_info.tty->name) |
| 1069 | : Qnil)); | 1069 | : Qnil)); |
| 1070 | /* On terminal frames the `minibuffer' frame parameter is always | ||
| 1071 | virtually t. Avoid that a different value in parms causes | ||
| 1072 | complaints, see Bug#24758. */ | ||
| 1073 | store_in_alist (&parms, Qminibuffer, Qt); | ||
| 1070 | Fmodify_frame_parameters (frame, parms); | 1074 | Fmodify_frame_parameters (frame, parms); |
| 1071 | 1075 | ||
| 1072 | /* Make the frame face alist be frame-specific, so that each | 1076 | /* Make the frame face alist be frame-specific, so that each |