From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: uzibalqa Newsgroups: gmane.emacs.help Subject: Re: Changing highlight colours of headings when using outline-minor-mode Date: Fri, 16 Jun 2023 19:34:16 +0000 Message-ID: References: <83a5x2ug6m.fsf@gnu.org> <6NIVBalA-Rq8piBKFLd1XFg4sWnaeX7Bj08cxrsnb9_D6zCMVjN5bj3hEUdGXBngIf_BqXd9Fv6eyfczDDCf7h2P7jdVKnwP4U3JMWssdq8=@proton.me> <83ilbns2vk.fsf@gnu.org> <648cb423.7b0a0220.1e76d.4b6b@mx.google.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="27773"; mail-complaints-to="usenet@ciao.gmane.io" Cc: Eli Zaretskii , help-gnu-emacs@gnu.org To: Bruno Barbier Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Fri Jun 16 21:35:06 2023 Return-path: Envelope-to: geh-help-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 1qAFDt-0006wD-Pl for geh-help-gnu-emacs@m.gmane-mx.org; Fri, 16 Jun 2023 21:35:05 +0200 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1qAFDM-0002TI-5A; Fri, 16 Jun 2023 15:34:32 -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 1qAFDJ-0002SG-B6 for help-gnu-emacs@gnu.org; Fri, 16 Jun 2023 15:34:30 -0400 Original-Received: from mail-40138.protonmail.ch ([185.70.40.138]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qAFDH-0001V4-1g; Fri, 16 Jun 2023 15:34:29 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=proton.me; s=protonmail; t=1686944062; x=1687203262; bh=nN5MlaRFuFdkrhgv0XNKKr8Wc/luj7H34E7TH/SA1bM=; h=Date:To:From:Cc:Subject:Message-ID:In-Reply-To:References: Feedback-ID:From:To:Cc:Date:Subject:Reply-To:Feedback-ID: Message-ID:BIMI-Selector; b=IDNNXw7RPC7LOp62ROmpDJ/+6izEBUsiPWC795n5thCRzt7COOIZyc4rS+CRxONY6 prk/T7rPtB96725HyV91HMwNLAXy6tdatvOssYCudcprtXLyTBSzLQSEEUWdIHgiVh LCAF3e3BarQUJiU75rK8P1tMobXLou0ohXEKS8FHGS1P8dpsXKcFTKu+H4f+ICWs64 TIzRM2QMKhI0zOY3bxKdrTK5Gn2iCujrnaanwCxZfPXWZNVrI9cn1VHn4HRwcZv3BV CbwQ3Mt0yyV92AkG9QF6j4tbTukhyteZ8KZH00mOg7Xv2LO/SHCahHNokr7Z4Y45zL GIPW8bOHxLJGA== In-Reply-To: <648cb423.7b0a0220.1e76d.4b6b@mx.google.com> Feedback-ID: 52887082:user:proton Received-SPF: pass client-ip=185.70.40.138; envelope-from=uzibalqa@proton.me; helo=mail-40138.protonmail.ch 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, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.help:143955 Archived-At: ------- Original Message ------- On Saturday, June 17th, 2023 at 7:12 AM, Bruno Barbier wrote: > uzibalqa uzibalqa@proton.me writes: >=20 >=20 > Shouldn't this: >=20 > > (put-text-property (point-at-bol) (point-at-eol) > > '$tyface $tyface)))) >=20 > be: >=20 > > (put-text-property (point-at-bol) (point-at-eol) > > 'font-lock-face $tyface)))) >=20 > ? Most likely, but I also have to incorporate all this with "outline-minor-mo= de-highlight". What would you suggest ?