From unknown Sat Aug 16 18:09:38 2025 X-Loop: help-debbugs@gnu.org Subject: bug#14634: 24.3.50; face attributes for font appearance (:font etc.) Resent-From: Drew Adams Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sun, 16 Jun 2013 09:16:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 14634 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: 14634@debbugs.gnu.org X-Debbugs-Original-To: bug-gnu-emacs@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.137137413123136 (code B ref -1); Sun, 16 Jun 2013 09:16:02 +0000 Received: (at submit) by debbugs.gnu.org; 16 Jun 2013 09:15:31 +0000 Received: from localhost ([127.0.0.1]:47620 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Uo93a-000613-7d for submit@debbugs.gnu.org; Sun, 16 Jun 2013 05:15:30 -0400 Received: from eggs.gnu.org ([208.118.235.92]:47576) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1Uo93Y-00060q-2p for submit@debbugs.gnu.org; Sun, 16 Jun 2013 05:15:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Uo93R-0003MZ-Lh for submit@debbugs.gnu.org; Sun, 16 Jun 2013 05:15:22 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-99.2 required=5.0 tests=BAYES_50,USER_IN_WHITELIST autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:51209) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Uo93R-0003MV-Is for submit@debbugs.gnu.org; Sun, 16 Jun 2013 05:15:21 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49298) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Uo93Q-0005wk-Au for bug-gnu-emacs@gnu.org; Sun, 16 Jun 2013 05:15:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Uo93P-0003ML-2N for bug-gnu-emacs@gnu.org; Sun, 16 Jun 2013 05:15:20 -0400 Received: from userp1040.oracle.com ([156.151.31.81]:39446) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Uo93O-0003MH-Rh for bug-gnu-emacs@gnu.org; Sun, 16 Jun 2013 05:15:19 -0400 Received: from acsinet22.oracle.com (acsinet22.oracle.com [141.146.126.238]) by userp1040.oracle.com (Sentrion-MTA-4.3.1/Sentrion-MTA-4.3.1) with ESMTP id r5G9FEaY002096 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Sun, 16 Jun 2013 09:15:15 GMT Received: from aserz7021.oracle.com (aserz7021.oracle.com [141.146.126.230]) by acsinet22.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id r5G9FGwn026463 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Sun, 16 Jun 2013 09:15:17 GMT Received: from abhmt118.oracle.com (abhmt118.oracle.com [141.146.116.70]) by aserz7021.oracle.com (8.14.4+Sun/8.14.4) with ESMTP id r5G9FG2B001561 for ; Sun, 16 Jun 2013 09:15:16 GMT MIME-Version: 1.0 Message-ID: Date: Sun, 16 Jun 2013 02:15:17 -0700 (PDT) From: Drew Adams X-Priority: 3 X-Mailer: Oracle Beehive Extensions for Outlook 2.0.1.7 (607090) [OL 12.0.6668.5000 (x86)] Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Source-IP: acsinet22.oracle.com [141.146.126.238] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x-2.6.x [generic] X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.0 (----) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -4.0 (----) Trying to figure out how to use face attribute :font, or, since that does not seem to work, to at least use other font-related face attributes. See also bug #14629, which is about the doc for face attribute :font. Suppose I want to show a string using a `face' text property that reflects a particular font, as given by its XLFD. For example, given this value from, say, a frame's `font' parameter: "-outline-Lucida Bright-bold-italic-normal-serif-14-*-*-*-p-*-iso8859-1" Suppose I want to propertize that string, for use elsewhere, with property `face' so that it appears in the same font (WYSIWYG). If `myfont' is a variable whose value is that XLFD string, you can try just using the string as the value of face attribute :font: (propertize myfont 'face (list :font myfont)) But that doesn't work - it seems to have no effect. Too bad. You can try splitting that XLFD string and using some of the fields: (let* ((splits (split-string myfont "-")) (foundry (nth 1 splits)) (family (nth 2 splits)) (weight (nth 3 splits)) (slant (nth 4 splits)) (width (nth 5 splits)))=20 (propertize myfont 'face (list :foundry foundry :family family :weight weight :slant slant :width width))) IOW: (propertize myfont 'face (list :foundry "outline" :family "Lucida Bright" :weight "bold" :slant "italic" :width "normal")) But that doesn't really show the font as it should either. It doesn't appear italic at all. And you apparently cannot get the size/height this way (by parsing the XLFD). There seems to be no correspondence between the value of PIXELS or HEIGHT from the XLFD and the available face attribute for size (i.e., :height). Nor does there seem to be any correspondence between face attribute :height and the sizes returned by `font-info' (neither SIZE nor HEIGHT). (Note that SIZE is not even explained - the `font-info' doc string just says it is "the pixelsize", whatever that means!) Why does :height use units of 1/10 point? None of the ways I can find to get info about a font's size use such units. And its not clear how to convert what you can obtain from the XLFD or from `font-info' into a :height value you can use as a face attribute. Why not make `font-info' return info that can be used as face attributes? And why not make face attributes that correspond to the font properties that Emacs uses elsewhere? (emacs) `Fonts' mentions these, for "fontconfig patterns": `style' and `spacing' (in addition to `slant', `weight', and `width'). And for XLFD it mentions all of the XLFD fields. Why can't we use such info as face attributes? Am I missing something, or is it a bug that you cannot easily specify a font's properties as face attributes? In general, this seems quite confusing and buggy. And isn't it a bug that specifying :slant "italic" has no effect? That is easy to see: emacs -Q In *scratch*, turn off font-lock-mode, then type this, then hit `C-x C-e': (put-text-property 92 126=20 =09=09 'face (list :foundry "outline" =09=09=09 :family "Lucida Bright" =09=09=09 :weight "bold" :slant "italic" =09=09=09 :width "normal")) You will see the words "to create a file, visit that file" change font, but they will not be italic... (I don't think it is bold either, but I cannot be sure.) `C-u C-x =3D' shows that the property was applied, but it is not reflected. Yet if you use `M-x customize-face default', and you set the family to "Lucida Bright", the foundry to "outline", the width to "normal", the weight to "bold", and the slant to "italic", you will see the font as it should be (bold italic). In GNU Emacs 24.3.50.1 (i686-pc-mingw32) of 2013-06-13 on ODIEONE Bzr revision: 112978 xfq.free@gmail.com-20130613224333-3yfl8navh3c1vmxy Windowing system distributor `Microsoft Corp.', version 6.1.7601 Configured using: `configure --prefix=3D/c/Devel/emacs/binary --enable-checking=3Dyes,glyphs CFLAGS=3D'-O0 -g3' CPPFLAGS=3D'-Ic:/Devel/emacs/include' LDFLAGS=3D'-Lc:/Devel/emacs/lib'' From unknown Sat Aug 16 18:09:38 2025 X-Loop: help-debbugs@gnu.org Subject: bug#14634: 24.3.50; face attributes for font appearance (:font etc.) Resent-From: Lars Ingebrigtsen Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 01 Nov 2019 17:15:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 14634 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: Drew Adams Cc: 14634@debbugs.gnu.org Received: via spool by 14634-submit@debbugs.gnu.org id=B14634.15726284879560 (code B ref 14634); Fri, 01 Nov 2019 17:15:01 +0000 Received: (at 14634) by debbugs.gnu.org; 1 Nov 2019 17:14:47 +0000 Received: from localhost ([127.0.0.1]:57015 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iQaVa-0002U7-OP for submit@debbugs.gnu.org; Fri, 01 Nov 2019 13:14:46 -0400 Received: from quimby.gnus.org ([80.91.231.51]:39788) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iQaVU-0002Ti-FR for 14634@debbugs.gnu.org; Fri, 01 Nov 2019 13:14:43 -0400 Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=marnie) by quimby.gnus.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1iQaVQ-0008S3-2s; Fri, 01 Nov 2019 18:14:38 +0100 From: Lars Ingebrigtsen References: Date: Fri, 01 Nov 2019 18:14:35 +0100 In-Reply-To: (Drew Adams's message of "Sun, 16 Jun 2013 02:15:17 -0700 (PDT)") Message-ID: <87v9s3wmbo.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: Drew Adams writes: > emacs -Q > In *scratch*, turn off font-lock-mode, then type this, then hit `C-x C-e': > > (put-text-property 92 126 > 'face (list :foundry "outline" > :family "Lucida Bright" > :weight "bold" :slant [...] Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Drew Adams writes: > emacs -Q > In *scratch*, turn off font-lock-mode, then type this, then hit `C-x C-e': > > (put-text-property 92 126 > 'face (list :foundry "outline" > :family "Lucida Bright" > :weight "bold" :slant "italic" > :width "normal")) > > You will see the words "to create a file, visit that file" change font, > but they will not be italic... (I don't think it is bold either, but I > cannot be sure.) `C-u C-x =' shows that the property was applied, but > it is not reflected. The syntax is with symbols, not strings: (insert (propertize "foo" 'face (list :foundry "outline" :family "Lucida Bright" :weight 'bold :slant 'italic :width 'normal))) This isn't mentioned in "Low-Level Font", so I've now done so. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Fri Nov 01 13:14:48 2019 Received: (at control) by debbugs.gnu.org; 1 Nov 2019 17:14:48 +0000 Received: from localhost ([127.0.0.1]:57017 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iQaVc-0002UG-0f for submit@debbugs.gnu.org; Fri, 01 Nov 2019 13:14:48 -0400 Received: from quimby.gnus.org ([80.91.231.51]:39802) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iQaVZ-0002U0-RX for control@debbugs.gnu.org; Fri, 01 Nov 2019 13:14:46 -0400 Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=marnie) by quimby.gnus.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1iQaVX-0008S9-6A for control@debbugs.gnu.org; Fri, 01 Nov 2019 18:14:45 +0100 Date: Fri, 01 Nov 2019 18:14:42 +0100 Message-Id: <87tv7nwmbh.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #14634 X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: tags 14634 fixed close 14634 27.1 quit Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) tags 14634 fixed close 14634 27.1 quit From unknown Sat Aug 16 18:09:38 2025 X-Loop: help-debbugs@gnu.org Subject: bug#14634: 24.3.50; face attributes for font appearance (:font etc.) Resent-From: Drew Adams Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 01 Nov 2019 17:59:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 14634 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: fixed To: Lars Ingebrigtsen Cc: 14634@debbugs.gnu.org Received: via spool by 14634-submit@debbugs.gnu.org id=B14634.157263108230178 (code B ref 14634); Fri, 01 Nov 2019 17:59:02 +0000 Received: (at 14634) by debbugs.gnu.org; 1 Nov 2019 17:58:02 +0000 Received: from localhost ([127.0.0.1]:57068 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iQbBS-0007qg-H7 for submit@debbugs.gnu.org; Fri, 01 Nov 2019 13:58:02 -0400 Received: from aserp2120.oracle.com ([141.146.126.78]:40964) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iQbBQ-0007qA-1J for 14634@debbugs.gnu.org; Fri, 01 Nov 2019 13:58:00 -0400 Received: from pps.filterd (aserp2120.oracle.com [127.0.0.1]) by aserp2120.oracle.com (8.16.0.27/8.16.0.27) with SMTP id xA1HsCAj121799; Fri, 1 Nov 2019 17:57:53 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=oracle.com; h=mime-version : message-id : date : from : sender : to : cc : subject : references : in-reply-to : content-type : content-transfer-encoding; s=corp-2019-08-05; bh=nY5ET134BWacTLtq5xK1RLuZHk/OZ283Ai+wphS0234=; b=H4W9fP+sNFhg1crHwP70yEFfioT2SsCm8BlgWR0J3EuvMfFLA/HMHE/5Qt6cgebYJ7sP uiAxEn2e8FASB8bpZkbKqerZvRIzgm3vmJ4L30sXYnHwGSyctWBL+GUITqmMdTQoQ/FZ iujNQ42C0cDptgMy3+XD/VziNgy/fFB7koMLzIqnD8yivPJoDYLTT8323lXwTOQFRKPG XbT1UxyiNsr/8v07XanqYhycxMZY5vyjw/yVwSixxhAW5BPBQYfBAeDL6y4qEiRHRsNc L6qwqgtSOdAZhyCJmmj9QGmO89dnslhYQFDuy1lDfKUKeJ9hFcJwzGeO9Zlj7AJHtqcr Ew== Received: from aserp3020.oracle.com (aserp3020.oracle.com [141.146.126.70]) by aserp2120.oracle.com with ESMTP id 2vxwhfuafe-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Fri, 01 Nov 2019 17:57:53 +0000 Received: from pps.filterd (aserp3020.oracle.com [127.0.0.1]) by aserp3020.oracle.com (8.16.0.27/8.16.0.27) with SMTP id xA1HsZCu103858; Fri, 1 Nov 2019 17:57:53 GMT Received: from aserv0122.oracle.com (aserv0122.oracle.com [141.146.126.236]) by aserp3020.oracle.com with ESMTP id 2w0rurkdys-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Fri, 01 Nov 2019 17:57:53 +0000 Received: from abhmp0015.oracle.com (abhmp0015.oracle.com [141.146.116.21]) by aserv0122.oracle.com (8.14.4/8.14.4) with ESMTP id xA1HvoXs001396; Fri, 1 Nov 2019 17:57:50 GMT MIME-Version: 1.0 Message-ID: Date: Fri, 1 Nov 2019 10:57:49 -0700 (PDT) From: Drew Adams References: <87v9s3wmbo.fsf@gnus.org> In-Reply-To: <87v9s3wmbo.fsf@gnus.org> X-Priority: 3 X-Mailer: Oracle Beehive Extensions for Outlook 2.0.1.9.1 (1003210) [OL 16.0.4900.0 (x86)] Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable X-Proofpoint-Virus-Version: vendor=nai engine=6000 definitions=9428 signatures=668685 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 suspectscore=0 malwarescore=0 phishscore=0 bulkscore=0 spamscore=0 mlxscore=0 mlxlogscore=977 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1908290000 definitions=main-1911010166 X-Proofpoint-Virus-Version: vendor=nai engine=6000 definitions=9428 signatures=668685 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 priorityscore=1501 malwarescore=0 suspectscore=0 phishscore=0 bulkscore=0 spamscore=0 clxscore=1011 lowpriorityscore=0 mlxscore=0 impostorscore=0 mlxlogscore=999 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1908290000 definitions=main-1911010166 X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) > The syntax is with symbols, not strings: >=20 > (insert (propertize "foo" 'face (list :foundry "outline" > =09=09=09 :family "Lucida Bright" > =09=09=09 :weight 'bold :slant 'italic > =09=09=09 :width 'normal))) >=20 > This isn't mentioned in "Low-Level Font", so I've now done so. Thanks. Could you also please take a look at the related bug #14629? Thx. From unknown Sat Aug 16 18:09:38 2025 X-Loop: help-debbugs@gnu.org Subject: bug#14634: 24.3.50; face attributes for font appearance (:font etc.) Resent-From: Lars Ingebrigtsen Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sat, 02 Nov 2019 14:32:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 14634 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: fixed To: Drew Adams Cc: 14634@debbugs.gnu.org Received: via spool by 14634-submit@debbugs.gnu.org id=B14634.157270509521435 (code B ref 14634); Sat, 02 Nov 2019 14:32:01 +0000 Received: (at 14634) by debbugs.gnu.org; 2 Nov 2019 14:31:35 +0000 Received: from localhost ([127.0.0.1]:32796 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iQuRD-0005Ze-4m for submit@debbugs.gnu.org; Sat, 02 Nov 2019 10:31:35 -0400 Received: from quimby.gnus.org ([80.91.231.51]:55656) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iQuRB-0005ZU-ER for 14634@debbugs.gnu.org; Sat, 02 Nov 2019 10:31:33 -0400 Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=marnie) by quimby.gnus.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1iQuR7-0003Qg-Hl; Sat, 02 Nov 2019 15:31:32 +0100 From: Lars Ingebrigtsen References: <87v9s3wmbo.fsf@gnus.org> Date: Sat, 02 Nov 2019 15:31:29 +0100 In-Reply-To: (Drew Adams's message of "Fri, 1 Nov 2019 10:57:49 -0700 (PDT)") Message-ID: <87sgn6fiym.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: Drew Adams writes: > Could you also please take a look at the related bug #14629? Thx. I'm slowly working my way through all the bugs that have "font" in their subject lines, but that's an earlier one than this one, which means that I've probably looked at it, but didn't have anything t [...] Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Drew Adams writes: > Could you also please take a look at the related bug #14629? Thx. I'm slowly working my way through all the bugs that have "font" in their subject lines, but that's an earlier one than this one, which means that I've probably looked at it, but didn't have anything to contribute, unfortunately. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From unknown Sat Aug 16 18:09:38 2025 X-Loop: help-debbugs@gnu.org Subject: bug#14634: 24.3.50; face attributes for font appearance (:font etc.) Resent-From: Eli Zaretskii Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sat, 02 Nov 2019 15:03:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 14634 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: fixed To: Lars Ingebrigtsen Cc: 14634@debbugs.gnu.org, drew.adams@oracle.com Received: via spool by 14634-submit@debbugs.gnu.org id=B14634.157270694632633 (code B ref 14634); Sat, 02 Nov 2019 15:03:02 +0000 Received: (at 14634) by debbugs.gnu.org; 2 Nov 2019 15:02:26 +0000 Received: from localhost ([127.0.0.1]:32851 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iQuv3-0008UH-TM for submit@debbugs.gnu.org; Sat, 02 Nov 2019 11:02:26 -0400 Received: from eggs.gnu.org ([209.51.188.92]:45066) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1iQuv2-0008Tn-3e for 14634@debbugs.gnu.org; Sat, 02 Nov 2019 11:02:24 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:56655) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1iQuuw-0006B4-TP; Sat, 02 Nov 2019 11:02:18 -0400 Received: from [176.228.60.248] (port=1711 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1iQuuv-0001pM-0R; Sat, 02 Nov 2019 11:02:17 -0400 Date: Sat, 02 Nov 2019 17:02:22 +0200 Message-Id: <83y2wyiao1.fsf@gnu.org> From: Eli Zaretskii In-reply-to: <87sgn6fiym.fsf@gnus.org> (message from Lars Ingebrigtsen on Sat, 02 Nov 2019 15:31:29 +0100) References: <87v9s3wmbo.fsf@gnus.org> <87sgn6fiym.fsf@gnus.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) > From: Lars Ingebrigtsen > Date: Sat, 02 Nov 2019 15:31:29 +0100 > Cc: 14634@debbugs.gnu.org > > Drew Adams writes: > > > Could you also please take a look at the related bug #14629? Thx. > > I'm slowly working my way through all the bugs that have "font" in their > subject lines, but that's an earlier one than this one, which means that > I've probably looked at it, but didn't have anything to contribute, > unfortunately. I just did.