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.bugs Subject: bug#48714: 28.0.50; Inconsistent font after theme modus-operandi upgrade Date: Sat, 29 May 2021 12:00:15 +0300 Message-ID: <831r9p7w4g.fsf@gnu.org> References: <835yz381ch.fsf@gnu.org> <87lf7y3ljw.fsf@protesilaos.com> <87bl8uni1d.fsf@protesilaos.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="16781"; mail-complaints-to="usenet@ciao.gmane.io" Cc: info@protesilaos.com, 48714@debbugs.gnu.org To: Pankaj Jangid Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Sat May 29 11:01:09 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 1lmuqD-0004Am-N8 for geb-bug-gnu-emacs@m.gmane-mx.org; Sat, 29 May 2021 11:01:09 +0200 Original-Received: from localhost ([::1]:33858 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lmuqC-00063F-Q1 for geb-bug-gnu-emacs@m.gmane-mx.org; Sat, 29 May 2021 05:01:08 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:60890) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lmuq6-00062s-Dg for bug-gnu-emacs@gnu.org; Sat, 29 May 2021 05:01:02 -0400 Original-Received: from debbugs.gnu.org ([209.51.188.43]:44452) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1lmuq6-0007Iz-66 for bug-gnu-emacs@gnu.org; Sat, 29 May 2021 05:01:02 -0400 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1lmuq6-0000CN-5U for bug-gnu-emacs@gnu.org; Sat, 29 May 2021 05:01:02 -0400 X-Loop: help-debbugs@gnu.org Resent-From: Eli Zaretskii Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sat, 29 May 2021 09:01:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 48714 X-GNU-PR-Package: emacs Original-Received: via spool by 48714-submit@debbugs.gnu.org id=B48714.162227881630640 (code B ref 48714); Sat, 29 May 2021 09:01:02 +0000 Original-Received: (at 48714) by debbugs.gnu.org; 29 May 2021 09:00:16 +0000 Original-Received: from localhost ([127.0.0.1]:55998 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lmupM-0007xl-0y for submit@debbugs.gnu.org; Sat, 29 May 2021 05:00:16 -0400 Original-Received: from eggs.gnu.org ([209.51.188.92]:38874) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lmupJ-0007p9-Os for 48714@debbugs.gnu.org; Sat, 29 May 2021 05:00:14 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]:39062) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1lmupD-0006aJ-44; Sat, 29 May 2021 05:00:07 -0400 Original-Received: from 84.94.185.95.cable.012.net.il ([84.94.185.95]:2927 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 1lmupC-0002QD-Db; Sat, 29 May 2021 05:00:07 -0400 In-Reply-To: (message from Pankaj Jangid on Sat, 29 May 2021 13:11:21 +0530) 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:207522 Archived-At: > From: Pankaj Jangid > Date: Sat, 29 May 2021 13:11:21 +0530 > Cc: 48714@debbugs.gnu.org > > Protesilaos Stavrou writes: > > > Does this happen with emacs -Q as well? > > Hmm... I created a test.el with just this: > > --8<---------------cut here---------------start------------->8--- > (when (window-system) > (custom-set-variables > '(modus-themes-slanted-constructs t) > '(modus-themes-bold-constructs nil)) > (load-theme 'modus-operandi)) > --8<---------------cut here---------------end--------------->8--- > > And it is working perfectly fine with ‘emacs -Q -l test.el’. So there > must be something in my init which is interfering with the theme. Note that "emacs -Q -l test.el" is NOT the same as having the contents of text.el be the only stuff in your ~/.emacs init file. So for the definitive evidence try "emacs" without -Q and have your .emacs have only the above as its contents.