From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Heime Newsgroups: gmane.emacs.help Subject: Re: Printing coloured strings in help-buffer Date: Sat, 13 Apr 2024 23:21:45 +0000 Message-ID: References: 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="29414"; mail-complaints-to="usenet@ciao.gmane.io" Cc: Heime via Users list for the GNU Emacs text editor To: Heime Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Sun Apr 14 01:22:32 2024 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 1rvmha-0007MZ-BG for geh-help-gnu-emacs@m.gmane-mx.org; Sun, 14 Apr 2024 01:22:30 +0200 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1rvmh4-0003In-MK; Sat, 13 Apr 2024 19:21:58 -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 1rvmh3-0003IZ-Ck for help-gnu-emacs@gnu.org; Sat, 13 Apr 2024 19:21:57 -0400 Original-Received: from mail-40137.protonmail.ch ([185.70.40.137]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1rvmgz-0005jL-4x for help-gnu-emacs@gnu.org; Sat, 13 Apr 2024 19:21:57 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail3; t=1713050510; x=1713309710; bh=JX3eLJxPVt21kK7Cs5E1dFlz+WclPiyYUNwF/dWD3O8=; 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=LFs/r6fZM3UfRCR24D0RbGozbAia+GkKQUhMk1QtBeMC83jXwwn5AySPeNPiiyPo8 x0Q0BXZk1tcrk59hpJxYSJXUu4OXIJV4pZZTZvi7b1x4s+cz7ixLNQWkeotGhdJzVJ 3//CnI4805YFRk7fjr6JWa3dSZkeL0fHjpM4GXg/ZhPQiJ2Whp66qJfPVRtgL97E5h aOu4jZ9l2EgvstL2KFW0sEozMiPZd9euZWegtSGdaexO8EnMjROxsCelEvV8YLQhxt Pypkj0S6UhYN9DVwzfyhTlOfW+JZg+4S/6rmzcEkiHu/C7pBexobit1DeIdolcqU5R Zd43HlJH9382A== In-Reply-To: Feedback-ID: 57735886:user:proton Received-SPF: pass client-ip=185.70.40.137; envelope-from=heimeborgia@protonmail.com; helo=mail-40137.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, FREEMAIL_FROM=0.001, RCVD_IN_MSPIKE_H4=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TO_EQ_FM_DIRECT_MX=0.001 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:146316 Archived-At: Sent with Proton Mail secure email. On Sunday, April 14th, 2024 at 10:20 AM, Heime = wrote: > How can I print text with colour? Have made the following and want > vcname and vcfile to print in colour, in the help buffer. >=20 >=20 > (defun gali-intro (vcname vcfile) > "TODO" >=20 > (princ > (concat > "`" vcname "' is a variable defined in` " vcfile "'.\n\n" > "Its description is shown below.\n\n")) ) >=20 > (defun gali-vconst () > (with-help-window (help-buffer) > (gali-intro "gali-minicompl" "gali.el" ))) Have made the following test but the colour is not being activated (defun sangali-defcon (vcname color) (insert (propertize vcname 'face '(:foreground color))) )