void x_set_visibility ();
void x_set_menu_bar_lines ();
void x_set_scroll_bar_width ();
+void x_set_unsplittable ();
static struct x_frame_parm_table x_frame_parms[] =
{
"visibility", x_set_visibility,
"menu-bar-lines", x_set_menu_bar_lines,
"scroll-bar-width", x_set_scroll_bar_width,
+ "unsplittable", x_set_unsplittable,
};
/* Attach the `x-frame-parameter' properties to
f->auto_lower = !EQ (Qnil, arg);
}
+void
+x_set_unsplittable (f, arg, oldval)
+ struct frame *f;
+ Lisp_Object arg, oldval;
+{
+ f->no_split = !NILP (arg);
+}
+
void
x_set_vertical_scroll_bars (f, arg, oldval)
struct frame *f;