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.devel Subject: Re: How to walk a Lisp_String? Date: Fri, 02 Sep 2022 10:20:29 +0300 Message-ID: <835yi6qm2q.fsf@gnu.org> References: <87a67jw1kw.fsf@elite.giraud> <83o7vzqey8.fsf@gnu.org> <83mtbjqemd.fsf@gnu.org> <87ler2963r.fsf@elite.giraud> <875yi6mvlx.fsf@yahoo.com> <875yi68e15.fsf@elite.giraud> Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="6359"; mail-complaints-to="usenet@ciao.gmane.io" Cc: luangruo@yahoo.com, emacs-devel@gnu.org To: Manuel Giraud Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Fri Sep 02 09:27:14 2022 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 1oU156-0001TQ-Tn for ged-emacs-devel@m.gmane-mx.org; Fri, 02 Sep 2022 09:27:13 +0200 Original-Received: from localhost ([::1]:39276 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1oU155-0005Mt-Kw for ged-emacs-devel@m.gmane-mx.org; Fri, 02 Sep 2022 03:27:11 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:34456) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oU0y8-0000Wb-B5 for emacs-devel@gnu.org; Fri, 02 Sep 2022 03:20:00 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]:54578) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oU0y8-0007tn-1k; Fri, 02 Sep 2022 03:20:00 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=EjSN0nCAueUsAlFvoLJlePFAXxGkss6pg5HeSR5VIVA=; b=cB2kxvmWiMi6 Lq1Zno+5KZSy4lKfuul6d/GaUKZwRU56gIsE4uuatvQ99xIkqtgZKGT6omJzoiyT5cnKdwUkgx/4W KXrNUbRz3Wyydfz/FdtXhQoES7KqsVM8FE0q5KTROImnyIYOQEWwKTTNBQSRf815VZJuSQwmsHPlB 3BitY4PjWsgHJkfUvNrGkwvHR3A+XWmpJa4cyT8qXsTsTmnNAiux4c33eIunRbnOhyNL299m1Gzrh CoK7GEi3wa34JRMJMbSWVo+miFX+1wKtkk+KCrWNKT0q8I+9hfEWIYKnFuxGnsUqJaI9lgQmdmfE2 wU3yUB9DxCyW/5IyuSzEdg==; Original-Received: from [87.69.77.57] (port=1371 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 1oU0y7-0000j2-H8; Fri, 02 Sep 2022 03:19:59 -0400 In-Reply-To: <875yi68e15.fsf@elite.giraud> (message from Manuel Giraud on Fri, 02 Sep 2022 08:51:34 +0200) 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:294518 Archived-At: > From: Manuel Giraud > Cc: Eli Zaretskii , emacs-devel@gnu.org > Date: Fri, 02 Sep 2022 08:51:34 +0200 > > Thanks for those hints. What is a "font driver's `shape' function"? This: font->driver->shape where 'font' is a pointer to 'struct font'. See font.c for how it is used.