From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Gregory Heytings Newsgroups: gmane.emacs.devel Subject: Re: How to revert the mode line on master Date: Thu, 25 Nov 2021 16:37:18 +0000 Message-ID: <612d659daad6722706a5@heytings.org> References: <2091430762.473879.1637843344844@mail1.libero.it> <83k0gw5qc6.fsf@gnu.org> <1747745450.91272.1637857903815@mail1.libero.it> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="15709"; mail-complaints-to="usenet@ciao.gmane.io" Cc: Eli Zaretskii , emacs-devel@gnu.org To: Angelo Graziosi Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Thu Nov 25 17:38:08 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 1mqHl9-0003p6-Jx for ged-emacs-devel@m.gmane-mx.org; Thu, 25 Nov 2021 17:38:07 +0100 Original-Received: from localhost ([::1]:58324 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1mqHl8-0002SI-K5 for ged-emacs-devel@m.gmane-mx.org; Thu, 25 Nov 2021 11:38:06 -0500 Original-Received: from eggs.gnu.org ([209.51.188.92]:33422) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mqHkV-0001k6-Tu for emacs-devel@gnu.org; Thu, 25 Nov 2021 11:37:27 -0500 Original-Received: from heytings.org ([95.142.160.155]:52866) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mqHkP-0007bg-Gm; Thu, 25 Nov 2021 11:37:27 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=heytings.org; s=20210101; t=1637858238; bh=gL9fBKdoD0CFlRuWt9xGyN/myghJkTuuCN+DrpQr4ac=; h=Date:From:To:cc:Subject:In-Reply-To:Message-ID:References:From; b=S7Ma1FRAo5h9R10D4Wu4TSy2uSwUin0L0T++0a7f6jFLtccPoxHXEH/fNcvivmPeM cvi8QymqtRQCEHRRqVRYOKSFsJZDBUG+23HQSYBtw+i0iPKGce9BBIA2jIlTmTV66P ///6qqmteCQm5CArMEQ1TOQJ8JfHeJxT8+CmSpcvoVRNnAjTc+y7Z3QFraBsiHzt6A 57wFtRGIqZD+KEJevp+7Bdbl+fWM9xtHWbVOBWgZxVNzWsII7DqeXzObyW+55BurVD Ivd1Bsa7SR4v6mkc/AyQ85QNQygnlKvzBJ12hFMf42QmEVCk33nuICVAFv05wbsN92 Q3IYyqe/wEMHA== In-Reply-To: <1747745450.91272.1637857903815@mail1.libero.it> Received-SPF: pass client-ip=95.142.160.155; envelope-from=gregory@heytings.org; helo=heytings.org X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action 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:280149 Archived-At: >>> I do not like the new behavior of mode line on master. How to revert? >> >> It's described in NEWS. > > It seems it only states > > "To get the old monospaced mode line back, customize the 'mode-line' > face" > > but does not say HOW, what to add to the init.el file. > It does, see the last line: ** The mode line now uses a proportional font by default. To get the old monospaced mode line back, customize the 'mode-line' face not to inherit from the 'variable-pitch' face, or add this to your ~/.emacs: (set-face-attribute 'mode-line t :inherit nil)