From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Juri Linkov Newsgroups: gmane.emacs.bugs Subject: bug#46299: 28.0.50; Value of tab-bar-show not respected in new frames. Date: Mon, 15 Feb 2021 11:07:37 +0200 Organization: LINKOV.NET Message-ID: <87ft1x1yxy.fsf@mail.linkov.net> References: <871rdv4xog.fsf@gmail.com> <87v9b2ifrz.fsf@mail.linkov.net> <55ebad56-b440-198a-653e-1660040d5eae@gmx.at> <38b988fd-2ad6-a596-23a0-1d765249f718@gmx.at> <87tuqjydku.fsf@mail.linkov.net> <871rdlr4vc.fsf@mail.linkov.net> <87ft1zsu75.fsf@mail.linkov.net> <87im6ulbzz.fsf@mail.linkov.net> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="21646"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (x86_64-pc-linux-gnu) Cc: 46299@debbugs.gnu.org, Bastian Beranek To: martin rudalics Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Mon Feb 15 10:53:17 2021 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1lBaZA-0005Vp-Sv for geb-bug-gnu-emacs@m.gmane-mx.org; Mon, 15 Feb 2021 10:53:16 +0100 Original-Received: from localhost ([::1]:48978 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lBaZ9-00038q-TV for geb-bug-gnu-emacs@m.gmane-mx.org; Mon, 15 Feb 2021 04:53:15 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:37536) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lBaX0-0000lK-QL for bug-gnu-emacs@gnu.org; Mon, 15 Feb 2021 04:51:02 -0500 Original-Received: from debbugs.gnu.org ([209.51.188.43]:53963) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1lBaX0-0007lg-DN for bug-gnu-emacs@gnu.org; Mon, 15 Feb 2021 04:51:02 -0500 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1lBaX0-0000mU-0L for bug-gnu-emacs@gnu.org; Mon, 15 Feb 2021 04:51:02 -0500 X-Loop: help-debbugs@gnu.org Resent-From: Juri Linkov Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 15 Feb 2021 09:51:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 46299 X-GNU-PR-Package: emacs Original-Received: via spool by 46299-submit@debbugs.gnu.org id=B46299.16133826352957 (code B ref 46299); Mon, 15 Feb 2021 09:51:01 +0000 Original-Received: (at 46299) by debbugs.gnu.org; 15 Feb 2021 09:50:35 +0000 Original-Received: from localhost ([127.0.0.1]:37273 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lBaWZ-0000ld-0f for submit@debbugs.gnu.org; Mon, 15 Feb 2021 04:50:35 -0500 Original-Received: from relay10.mail.gandi.net ([217.70.178.230]:55633) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lBaWX-0000lN-00 for 46299@debbugs.gnu.org; Mon, 15 Feb 2021 04:50:33 -0500 Original-Received: from mail.gandi.net (m91-129-108-204.cust.tele2.ee [91.129.108.204]) (Authenticated sender: juri@linkov.net) by relay10.mail.gandi.net (Postfix) with ESMTPSA id C94B124000D; Mon, 15 Feb 2021 09:50:24 +0000 (UTC) In-Reply-To: (martin rudalics's message of "Mon, 15 Feb 2021 09:16:40 +0100") X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: bug-gnu-emacs@gnu.org List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: "bug-gnu-emacs" Xref: news.gmane.io gmane.emacs.bugs:200046 Archived-At: >> What if the user wants to manually enable the tab bar on one frame only >> without enabling tab-bar-mode? Currently it's possible with >> >> (add-hook 'after-make-frame-functions 'toggle-frame-tab-bar) > > As a rule, this should be done by setting the 'tab-bar-lines' parameter > of that frame to non-zero, leaving it at zero for all other frames. > > 'toggle-frame-tab-bar' should stick to that rule. 'toggle-frame-tab-bar' already does exactly this - sets the 'tab-bar-lines' parameter to non-zero, and doesn't change it on all other frames. But currently 'tab-bar-show' overrides this user setting, and affects all other frames.