From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Arash Esbati Newsgroups: gmane.emacs.devel Subject: Re: master db6de49f231: Allow displaying tool bar on the bottom of the frame Date: Thu, 22 Jun 2023 22:01:33 +0200 Message-ID: <86352jw9k2.fsf@gnu.org> References: <168731352535.2607.8038900728174101272@vcs2.savannah.gnu.org> <20230621021206.51744C06C79@vcs2.savannah.gnu.org> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="20235"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Cc: Po Lu To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Thu Jun 22 22:02:52 2023 Return-path: Envelope-to: ged-emacs-devel@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 1qCQW4-00058A-09 for ged-emacs-devel@m.gmane-mx.org; Thu, 22 Jun 2023 22:02:52 +0200 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1qCQVO-00038P-Gw; Thu, 22 Jun 2023 16:02:10 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qCQVM-000388-Hm for emacs-devel@gnu.org; Thu, 22 Jun 2023 16:02:08 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qCQVM-0000iT-8j; Thu, 22 Jun 2023 16:02:08 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=NY9EXedCj3nDpllI4CgiPSbc8OHo634XbBgKleJ7Qpo=; b=jXslD+47jqZbI3VSKDpn PsmotIZRKJ7Kgt6WrHw4ZD/HkOPcPgePqRbWVzm47Gpkn38XFSEVnSyd4WxvnpWaYk9htn30HSZIj hV3HlmhlqJQa2QfdKC3zO73+9yW4Ojur8BGJrPR1g9hOF51YpN/Riw6erg941Bpdp/QN1IJX3V/y3 ZWzayhTC9sz1vpTVORAeRkD1oUIFqFUct85tYrVbA0bJo1HIgjsSKQPfvgLQE9vVE6cgoHSB9hyE6 FCrrjGsoDmlOrsgGA0BHdnm2475VC7WZ1Eu2N1Mw4ucVtRMvafPMcRU8kMypVNoCF1AjRFvaNPI3c L5ANtHmKeviheA==; Original-Received: from pd9fb7546.dip0.t-ipconnect.de ([217.251.117.70] helo=MUTANT) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qCQVK-0000co-VO; Thu, 22 Jun 2023 16:02:07 -0400 In-Reply-To: <20230621021206.51744C06C79@vcs2.savannah.gnu.org> (Po Lu via Mailing list for Emacs changes's message of "Tue, 20 Jun 2023 22:12:05 -0400 (EDT)") X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.devel:307134 Archived-At: Po Lu via Mailing list for Emacs changes writes: > branch: master > commit db6de49f231f863b21547173ce3ac9ab8e5e0d86 > Author: Po Lu > Commit: Po Lu > [...] > @item tool-bar-position > This tells on which side the tool bar on @var{frame} is and can be one > -of @code{left}, @code{top}, @code{right} or @code{bottom}. The only > -toolkit that currently supports a value other than @code{top} is GTK+. > +of @code{left}, @code{top}, @code{right} or @code{bottom}. > + > +The values @code{left} and @code{bottom} are only supported on builds ^^^^^^ Compared with the text below, I think the above should read @code{right}. > +using the GTK+ toolkit; @code{bottom} is supported on all builds other > +than NS, and @code{top} is supported everywhere. > > @item tool-bar-size > A cons of the width and height of the tool bar of @var{frame}. > @@ -1905,9 +1913,11 @@ whenever the tool bar wraps (@pxref{Frame Layout}). > > @vindex tool-bar-position@r{, a frame parameter} > @item tool-bar-position > -The position of the tool bar when Emacs was built with GTK+. Its value > -can be one of @code{top}, @code{bottom} @code{left}, @code{right}. The > -default is @code{top}. > +The position of the tool bar. Its value can be one of @code{top}, > +@code{bottom} @code{left}, @code{right}. The default is @code{top}. > + > +It can be set to @code{bottom} on Emacs built with any toolkit other > +than Nextstep, and @code{left} or @code{right} on builds using GTK+. Best, Arash