From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: master 84bf954 2/2: Use a proportional font for the mode line Date: Thu, 25 Nov 2021 20:28:27 +0200 Message-ID: <83mtls3x9w.fsf@gnu.org> References: <20211124134823.8483.27841@vcs0.savannah.gnu.org> <20211124134825.75B422094B@vcs0.savannah.gnu.org> <87ilwg5fbq.fsf@gmail.com> <87fsrkb0cn.fsf@gnus.org> <8735nk5d7y.fsf@gmail.com> <87bl28ayl4.fsf@gnus.org> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="20197"; mail-complaints-to="usenet@ciao.gmane.io" Cc: rpluim@gmail.com, emacs-devel@gnu.org To: Lars Ingebrigtsen Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Thu Nov 25 19:29:37 2021 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 1mqJV2-00054J-Kx for ged-emacs-devel@m.gmane-mx.org; Thu, 25 Nov 2021 19:29:36 +0100 Original-Received: from localhost ([::1]:44780 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1mqJV0-0002AV-UL for ged-emacs-devel@m.gmane-mx.org; Thu, 25 Nov 2021 13:29:34 -0500 Original-Received: from eggs.gnu.org ([209.51.188.92]:34984) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mqJTv-0001QH-Ix for emacs-devel@gnu.org; Thu, 25 Nov 2021 13:28:27 -0500 Original-Received: from [2001:470:142:3::e] (port=54016 helo=fencepost.gnu.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mqJTv-0003hE-7U; Thu, 25 Nov 2021 13:28:27 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=j7mGeCK4u+eKAGygRZJ+zvPzVOzoTB4REEnaB/72hOs=; b=U38T3tJsYXNa pv6AxW+fFCYMaijqBER6sHiBAAVf2HdM8Ka5ty0T6/eRP5rwpGZdDxGTLBFGkB5YWwf7anhvGtDPv RxUnSGfFTUZza4UHxpiCfa9ocyORKBhe324SJE8utB7OpCoSmcG0I5KDr5OddYKVai8OArY8Ckl1X XPSij2YQzlYlSiK1zLqITusUsJEgkZFbsx4h39A1aHhiNkhK4dfhruD2fN4QpDeeIlQPqMBYJPwcW oqVyqCikhcnOf7PTU5FsqGtXOMSbcP8j2BgefF0ASa4TgB5CORvp8abg058oSuN8No5QKsdkuGL6R jI2z3zPocIIx0gzhm5Loqg==; Original-Received: from [87.69.77.57] (port=1664 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mqJTu-0003By-Rd; Thu, 25 Nov 2021 13:28:27 -0500 In-Reply-To: <87bl28ayl4.fsf@gnus.org> (message from Lars Ingebrigtsen on Thu, 25 Nov 2021 19:18:15 +0100) 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" Xref: news.gmane.io gmane.emacs.devel:280168 Archived-At: > From: Lars Ingebrigtsen > Date: Thu, 25 Nov 2021 19:18:15 +0100 > Cc: emacs-devel@gnu.org > > > diff --git a/src/font.c b/src/font.c > > index d423fd46b7..0cedb230c8 100644 > > --- a/src/font.c > > +++ b/src/font.c > > @@ -70,7 +70,7 @@ #define DEFAULT_ENCODING Qiso8859_1 > > { 40, { "ultra-light", "ultralight", "extra-light", "extralight" }}, > > { 50, { "light" }}, > > { 55, { "semi-light", "semilight", "demilight" }}, > > - { 80, { "regular", "normal", "unspecified", "book" }}, > > + { 80, { "normal", "regular", "unspecified", "book" }}, > > Hm. But is that a problem with Customize or this? I guess "normal" is > more normal than regular, so perhaps this is the right solution. I think it's a bug in Customize that it doesn't support the aliases here. If nevertheless we fix it in font.c, we should have a prominent comment there explaining the importance of the order.