mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
On terminal frames ignore minibuffer frame parameter (Bug#24758)
* src/frame.c (Fmake_terminal_frame): Don't complain when the caller asks for a deviant minibuffer setting (Bug#24758).
This commit is contained in:
parent
897998291f
commit
d45be6bc45
1 changed files with 4 additions and 0 deletions
|
|
@ -1067,6 +1067,10 @@ affects all frames on the same terminal device. */)
|
|||
(t->display_info.tty->name
|
||||
? build_string (t->display_info.tty->name)
|
||||
: Qnil));
|
||||
/* On terminal frames the `minibuffer' frame parameter is always
|
||||
virtually t. Avoid that a different value in parms causes
|
||||
complaints, see Bug#24758. */
|
||||
store_in_alist (&parms, Qminibuffer, Qt);
|
||||
Fmodify_frame_parameters (frame, parms);
|
||||
|
||||
/* Make the frame face alist be frame-specific, so that each
|
||||
|
|
|
|||
Loading…
Reference in a new issue