From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: ams@gnu.org (Alfred M. Szmidt) Newsgroups: gmane.emacs.devel Subject: Re: Modernize frame-title-format: "%b - GNU Emacs" Date: Thu, 27 Aug 2020 02:32:43 -0400 Message-ID: References: Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="31570"; mail-complaints-to="usenet@ciao.gmane.io" Cc: emacs-devel@gnu.org To: Stefan Kangas Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Thu Aug 27 08:33:49 2020 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 1kBBTo-00085a-KR for ged-emacs-devel@m.gmane-mx.org; Thu, 27 Aug 2020 08:33:48 +0200 Original-Received: from localhost ([::1]:58150 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kBBTn-0002wJ-LY for ged-emacs-devel@m.gmane-mx.org; Thu, 27 Aug 2020 02:33:47 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:49712) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kBBSm-0002UR-74 for emacs-devel@gnu.org; Thu, 27 Aug 2020 02:32:44 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]:47127) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kBBSl-0007nx-Km; Thu, 27 Aug 2020 02:32:43 -0400 Original-Received: from ams by fencepost.gnu.org with local (Exim 4.82) (envelope-from ) id 1kBBSl-0007bb-1K; Thu, 27 Aug 2020 02:32:43 -0400 In-reply-to: (message from Stefan Kangas on Wed, 26 Aug 2020 15:09:08 -0700) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.23 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" Xref: news.gmane.io gmane.emacs.devel:254274 Archived-At: We currently have: (setq frame-title-format '(multiple-frames "%b" ("" invocation-name "@" system-name))) The suggestion is to change it to: (setq frame-title-format "%b - GNU Emacs") Alternatively, I think one could also reasonably choose: (setq frame-title-format '(multiple-frames "%b" ("%b - GNU Emacs"))) Those loose information about where you are running Emacs; which is a useful thing when you have multiple Emacsen open on several hosts. Please keep at least the system-name in the title bar.