1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-06 06:20:55 -08:00

Signal errors for unimplemented features

* src/frame.c (make_terminal_frame): Error for minibuffer-only frames.
* src/term.c (Ftty_frame_restack): Signal error.
This commit is contained in:
Gerd Möllmann 2024-12-12 08:00:44 +01:00
parent b67feec95e
commit 6fa2050ee7
2 changed files with 2 additions and 8 deletions

View file

@ -1296,14 +1296,7 @@ make_terminal_frame (struct terminal *terminal, Lisp_Object parent,
if (EQ (mini, Qnone) || NILP (mini))
f = make_frame_without_minibuffer (Qnil, kb, Qnil);
else if (EQ (mini, Qonly))
{
# if 0 /* No interest in this feature at the moment. */
f = make_minibuffer_frame ();
/* Not sure about this, plus the unsplittable frame
param. */
f->no_split = true;
# endif
}
error ("minibuffer-only child frames are not implemented");
else if (WINDOWP (mini))
f = make_frame_without_minibuffer (mini, kb, Qnil);
}