From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Alan Third Newsgroups: gmane.emacs.devel Subject: Re: Loading svg from memory using custom filename for base_uri Date: Thu, 3 Dec 2020 16:16:55 +0000 Message-ID: References: <83a7inq77f.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="10061"; mail-complaints-to="usenet@ciao.gmane.io" Cc: Eli Zaretskii , emacs-devel To: Evgeny Zajcev Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Thu Dec 03 17:27:24 2020 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 1kkrRz-0002WK-RH for ged-emacs-devel@m.gmane-mx.org; Thu, 03 Dec 2020 17:27:23 +0100 Original-Received: from localhost ([::1]:57958 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kkrRy-000861-Sg for ged-emacs-devel@m.gmane-mx.org; Thu, 03 Dec 2020 11:27:22 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:37824) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kkrI6-0003mr-JA for emacs-devel@gnu.org; Thu, 03 Dec 2020 11:17:10 -0500 Original-Received: from outbound.soverin.net ([2a01:4f8:fff0:2d:8::218]:46251) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kkrI4-0004Oj-5l; Thu, 03 Dec 2020 11:17:09 -0500 Original-Received: from smtp.soverin.net (unknown [10.10.3.24]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by outbound.soverin.net (Postfix) with ESMTPS id 52AD760199; Thu, 3 Dec 2020 16:17:02 +0000 (UTC) Original-Received: from smtp.soverin.net (smtp.soverin.net [159.69.232.138]) by soverin.net Original-Received: by breton.holly.idiocy.org (Postfix, from userid 501) id 0A904202852D44; Thu, 3 Dec 2020 16:16:55 +0000 (GMT) Mail-Followup-To: Alan Third , Evgeny Zajcev , Eli Zaretskii , emacs-devel Content-Disposition: inline In-Reply-To: Received-SPF: pass client-ip=2a01:4f8:fff0:2d:8::218; envelope-from=alan@idiocy.org; helo=outbound.soverin.net X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.23 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:260226 Archived-At: On Thu, Dec 03, 2020 at 06:47:37PM +0300, Evgeny Zajcev wrote: > diff --git a/src/xdisp.c b/src/xdisp.c > index 76ef420a36..51735b269d 100644 > --- a/src/xdisp.c > +++ b/src/xdisp.c > @@ -34631,6 +34631,7 @@ syms_of_xdisp (void) > DEFSYM (QCeval, ":eval"); > DEFSYM (QCpropertize, ":propertize"); > DEFSYM (QCfile, ":file"); > + DEFSYM (QCbase_uri, ":base-uri"); > DEFSYM (Qfontified, "fontified"); > DEFSYM (Qfontification_functions, "fontification-functions"); Hi Evgeny, is there any reason this couldn't go in image.c? I think we only need it when librsvg is compiled in too. -- Alan Third