]> git.eshelyaron.com Git - emacs.git/commitdiff
Set initial tab bar parameter on NS
authorPo Lu <luangruo@yahoo.com>
Sat, 27 Nov 2021 00:34:51 +0000 (08:34 +0800)
committerPo Lu <luangruo@yahoo.com>
Sat, 27 Nov 2021 00:34:51 +0000 (08:34 +0800)
* src/nsfns.m (Fx_create_frame): Initialize `tab-bar-lines'
frame parameter during frame creation.

src/nsfns.m

index f4d81722460d53174a2d55b0651b7a3d48db3268..c2791aa15a9c80a4e4a408fd9668b3c97bbc28a9 100644 (file)
@@ -1365,6 +1365,10 @@ DEFUN ("x-create-frame", Fx_create_frame, Sx_create_frame,
                          NILP (Vmenu_bar_mode)
                          ? make_fixnum (0) : make_fixnum (1),
                          NULL, NULL, RES_TYPE_NUMBER);
+  gui_default_parameter (f, parms, Qtab_bar_lines,
+                         NILP (Vtab_bar_mode)
+                         ? make_fixnum (0) : make_fixnum (1),
+                        NULL, NULL, RES_TYPE_NUMBER);
   gui_default_parameter (f, parms, Qtool_bar_lines,
                          NILP (Vtool_bar_mode)
                          ? make_fixnum (0) : make_fixnum (1),