From debbugs-submit-bounces@debbugs.gnu.org Sat Aug 12 04:49:19 2023 Received: (at submit) by debbugs.gnu.org; 12 Aug 2023 08:49:19 +0000 Received: from localhost ([127.0.0.1]:48686 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qUkJD-0007ZC-FK for submit@debbugs.gnu.org; Sat, 12 Aug 2023 04:49:19 -0400 Received: from lists.gnu.org ([2001:470:142::17]:54486) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qUkJB-0007Yv-22 for submit@debbugs.gnu.org; Sat, 12 Aug 2023 04:49:17 -0400 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 1qUkJ5-0003f4-8S for bug-gnu-emacs@gnu.org; Sat, 12 Aug 2023 04:49:11 -0400 Received: from out-69.mta1.migadu.com ([95.215.58.69]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qUkJ2-0002WR-9A for bug-gnu-emacs@gnu.org; Sat, 12 Aug 2023 04:49:10 -0400 X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=breatheoutbreathe.in; s=key1; t=1691830141; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type; bh=+KSukob+Fc3nn+KnA7jc4FVpCiq9ffTl0TX/0OiySz4=; b=Kw38D/OGxLgyKUTZYhTf1OHi/DPZxl179EA4/Iv9HvVjn/IFRJ6leErxiOHiJo5NPCsICC x0upPo8gAtE9yVvEjBMy4Aplt2esT5EY502HxWG7xBvaG8BRzTSK5ziLm6/o3CFusULO/G 5hH2ewTRiMFQvflZY6VF7aFC/+VBgOc= From: Joseph Turner To: bug-gnu-emacs@gnu.org Subject: [PATCH] Fix building of VC package manuals with relative org links/includes Date: Sat, 12 Aug 2023 01:43:35 -0700 Message-ID: <87y1ig3atl.fsf@breatheoutbreathe.in> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Migadu-Flow: FLOW_OUT Received-SPF: pass client-ip=95.215.58.69; envelope-from=joseph@breatheoutbreathe.in; helo=out-69.mta1.migadu.com 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_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.9 (/) X-Debbugs-Envelope-To: submit Cc: philipk@posteo.net 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: -0.1 (/) --=-=-= Content-Type: text/plain Hello, This patch allows for relative includes and link in org files compiled to texinfo. Unfortunately, I missed this back in May (commit 1e6a7594 ), when we fixed relative texi @include links. I'm not sure how the Emacs release cycle works. Would it be possible to include this fix in 29.2? Best, Joseph --=-=-= Content-Type: text/x-diff Content-Disposition: attachment; filename=0001-Fix-building-of-VC-package-manuals-with-relative-org.patch >From e951b0ea4ffa90202ecee934eddd895b706c6794 Mon Sep 17 00:00:00 2001 From: Joseph Turner Date: Sat, 12 Aug 2023 01:40:07 -0700 Subject: [PATCH] Fix building of VC package manuals with relative org links/includes * lisp/emacs-lisp/package-vc.el (package-vc--build-documentation): Ensure that default-default is the docs-directory around org-export-to-file to ensure that links to relative files work correctly. --- lisp/emacs-lisp/package-vc.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/emacs-lisp/package-vc.el b/lisp/emacs-lisp/package-vc.el index b4c911015b5..ffc7afeb2ee 100644 --- a/lisp/emacs-lisp/package-vc.el +++ b/lisp/emacs-lisp/package-vc.el @@ -356,7 +356,8 @@ otherwise it's assumed to be an Info file." (with-temp-buffer (insert-file-contents file) (setq file (make-temp-file "ox-texinfo-")) - (org-export-to-file 'texinfo file) + (let ((default-directory docs-directory)) + (org-export-to-file 'texinfo file)) (setq clean-up t))) (with-current-buffer (get-buffer-create " *package-vc doc*") (erase-buffer) -- 2.41.0 --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Mon Aug 14 04:14:40 2023 Received: (at 65243) by debbugs.gnu.org; 14 Aug 2023 08:14:40 +0000 Received: from localhost ([127.0.0.1]:60988 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qVSim-0002HS-FD for submit@debbugs.gnu.org; Mon, 14 Aug 2023 04:14:40 -0400 Received: from mout02.posteo.de ([185.67.36.66]:52731) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qVSik-0002HF-MV for 65243@debbugs.gnu.org; Mon, 14 Aug 2023 04:14:39 -0400 Received: from submission (posteo.de [185.67.36.169]) by mout02.posteo.de (Postfix) with ESMTPS id E62B4240104 for <65243@debbugs.gnu.org>; Mon, 14 Aug 2023 10:14:32 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1692000872; bh=jwfUdHJLyfP7+7EsLSuT574tcv6UjG4AC7f4n9Adhhk=; h=From:To:Cc:Subject:Autocrypt:Date:Message-ID:MIME-Version:From; b=gEETZZZHhOJpT30xALpvxx7Fsii/yfWprJDsuWizA+aKsxKVj4ItslesXLzTYzDZZ Wxb6hATLOC1h+Grf7vf2aCbGvqg0+EpSLleCWJf1HhANmtoY7i74KTsvTVs7SaFgLb LakIt6Uv55opNQgnuXhIbdJEirUIJByhaYBU5a1ir9F/EsdoFBmmmaqnuvnvUpmjaY 1Sz/ggtGyH1Un70h+juzu25wsByvGfyCbDflt/cs03SYaCVbcwaqm6/A++ZESijH8Z Vz/UXsTT3AyN03ABM6h6d3jmMK/EeR/OVRn6WZ/HFsqnVre+fHJ1xv3U6g0LF2rXzI r3tCYA1O02G7A== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4RPRyJ2SKyz6tw0; Mon, 14 Aug 2023 10:14:32 +0200 (CEST) From: Philip Kaludercic To: Joseph Turner Subject: Re: bug#65243: [PATCH] Fix building of VC package manuals with relative org links/includes In-Reply-To: <87y1ig3atl.fsf@breatheoutbreathe.in> (Joseph Turner's message of "Sat, 12 Aug 2023 01:43:35 -0700") References: <87y1ig3atl.fsf@breatheoutbreathe.in> Autocrypt: addr=philipk@posteo.net; keydata= mDMEZBBQQhYJKwYBBAHaRw8BAQdAHJuofBrfqFh12uQu0Yi7mrl525F28eTmwUDflFNmdui0QlBo aWxpcCBLYWx1ZGVyY2ljIChnZW5lcmF0ZWQgYnkgYXV0b2NyeXB0LmVsKSA8cGhpbGlwa0Bwb3N0 ZW8ubmV0PoiWBBMWCAA+FiEEDg7HY17ghYlni8XN8xYDWXahwukFAmQQUEICGwMFCQHhM4AFCwkI BwIGFQoJCAsCBBYCAwECHgECF4AACgkQ8xYDWXahwulikAEA77hloUiSrXgFkUVJhlKBpLCHUjA0 mWZ9j9w5d08+jVwBAK6c4iGP7j+/PhbkxaEKa4V3MzIl7zJkcNNjHCXmvFcEuDgEZBBQQhIKKwYB BAGXVQEFAQEHQI5NLiLRjZy3OfSt1dhCmFyn+fN/QKELUYQetiaoe+MMAwEIB4h+BBgWCAAmFiEE Dg7HY17ghYlni8XN8xYDWXahwukFAmQQUEICGwwFCQHhM4AACgkQ8xYDWXahwukm+wEA8cml4JpK NeAu65rg+auKrPOP6TP/4YWRCTIvuYDm0joBALw98AMz7/qMHvSCeU/hw9PL6u6R2EScxtpKnWof z4oM Date: Mon, 14 Aug 2023 08:14:31 +0000 Message-ID: <87pm3qhwgo.fsf@posteo.net> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 65243 Cc: 65243@debbugs.gnu.org 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 (---) Joseph Turner writes: > Hello, > > This patch allows for relative includes and link in org files compiled > to texinfo. > > Unfortunately, I missed this back in May > (commit 1e6a7594 ), when we fixed relative texi @include links. > > I'm not sure how the Emacs release cycle works. Would it be possible to > include this fix in 29.2? I wouldn't have any issue with that, and AFAIU now that the release has been cut, this should be fine, as this is just a bug fix. BTW, what package is this related to? > Best, > > Joseph > >>>From e951b0ea4ffa90202ecee934eddd895b706c6794 Mon Sep 17 00:00:00 2001 > From: Joseph Turner > Date: Sat, 12 Aug 2023 01:40:07 -0700 > Subject: [PATCH] Fix building of VC package manuals with relative org > links/includes > > * lisp/emacs-lisp/package-vc.el (package-vc--build-documentation): > Ensure that default-default is the docs-directory around > org-export-to-file to ensure that links to relative files work correctly. > --- > lisp/emacs-lisp/package-vc.el | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/lisp/emacs-lisp/package-vc.el b/lisp/emacs-lisp/package-vc.el > index b4c911015b5..ffc7afeb2ee 100644 > --- a/lisp/emacs-lisp/package-vc.el > +++ b/lisp/emacs-lisp/package-vc.el > @@ -356,7 +356,8 @@ otherwise it's assumed to be an Info file." > (with-temp-buffer > (insert-file-contents file) > (setq file (make-temp-file "ox-texinfo-")) > - (org-export-to-file 'texinfo file) > + (let ((default-directory docs-directory)) > + (org-export-to-file 'texinfo file)) > (setq clean-up t))) > (with-current-buffer (get-buffer-create " *package-vc doc*") > (erase-buffer) From debbugs-submit-bounces@debbugs.gnu.org Mon Aug 14 08:11:11 2023 Received: (at 65243) by debbugs.gnu.org; 14 Aug 2023 12:11:11 +0000 Received: from localhost ([127.0.0.1]:33101 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qVWPf-0000Le-3Q for submit@debbugs.gnu.org; Mon, 14 Aug 2023 08:11:11 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:46392) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qVWPc-0000L8-MW for 65243@debbugs.gnu.org; Mon, 14 Aug 2023 08:11:09 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qVWPU-000641-R5; Mon, 14 Aug 2023 08:11:01 -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=hFREr9XdT1xbqsubNne0h/BtlMnKhmf7gUa5GBgr8ds=; b=iLWqQFT6xn0s K0ySavpXh1+mxCvQyHFbts00OyTfwwVhnpcqpp5eZOnnHOkLfmEmhpsvjvlvF2MLHKL+O5OduThna g0yTe8f35Hcv9Ns7lTibIcSxgNkDknZs4jNgTZMsaS0dyBjy9MQjMoiuFa8YVzcL1S4b0bjPTAj/k 6MEI9T5gximUGaLQQUQEqv3l1Km98JXfKhJNv1ZtNai+SBz5Kt9+s85QwhfEPESWZcitdfoATcxMq 5pjWbUtlcOI2McJ/hfG70ma/6syhfipZ90iq8VznJQyCgDCyn1lrlmOJKCSwZK11O7LXBOFH5m0qp JDyeoCzoUmyamqaMsn1v6Q==; Date: Mon, 14 Aug 2023 15:11:00 +0300 Message-Id: <83fs4lbz8r.fsf@gnu.org> From: Eli Zaretskii To: Philip Kaludercic In-Reply-To: <87pm3qhwgo.fsf@posteo.net> (message from Philip Kaludercic on Mon, 14 Aug 2023 08:14:31 +0000) Subject: Re: bug#65243: [PATCH] Fix building of VC package manuals with relative org links/includes References: <87y1ig3atl.fsf@breatheoutbreathe.in> <87pm3qhwgo.fsf@posteo.net> X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 65243 Cc: 65243@debbugs.gnu.org, joseph@breatheoutbreathe.in 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 (---) > Cc: 65243@debbugs.gnu.org > From: Philip Kaludercic > Date: Mon, 14 Aug 2023 08:14:31 +0000 > > Joseph Turner writes: > > > I'm not sure how the Emacs release cycle works. Would it be possible to > > include this fix in 29.2? > > I wouldn't have any issue with that, and AFAIU now that the release has > been cut, this should be fine, as this is just a bug fix. Fine by me, thanks. From debbugs-submit-bounces@debbugs.gnu.org Mon Aug 14 22:02:34 2023 Received: (at 65243) by debbugs.gnu.org; 15 Aug 2023 02:02:35 +0000 Received: from localhost ([127.0.0.1]:34659 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qVjOE-0001tn-Gb for submit@debbugs.gnu.org; Mon, 14 Aug 2023 22:02:34 -0400 Received: from out-73.mta0.migadu.com ([2001:41d0:1004:224b::49]:22243) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qVjOB-0001ta-Dt for 65243@debbugs.gnu.org; Mon, 14 Aug 2023 22:02:33 -0400 References: <87y1ig3atl.fsf@breatheoutbreathe.in> <87pm3qhwgo.fsf@posteo.net> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=breatheoutbreathe.in; s=key1; t=1692064948; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=Pv+28ljOSHEowzr14EDehcJ4N/U7ZQCOcqPCmbD+zzE=; b=YASnyNg3M/eFjuKdgWulLVYeShQ7MkAgl8dQ42TSTF6OQ3znog1TUB+T4Vb+N56oLuctDa hG8HLVjGQd2MpwfKOojPNUM/OJdNmqEy7YjOdyMMJxTQv6OmNt4Ze9AhAqZksN+w/zgMtG mg/NSTQ0mRax1r6xSiYcqcWTrOBBOEY= X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Joseph Turner To: Philip Kaludercic Subject: Re: bug#65243: [PATCH] Fix building of VC package manuals with relative org links/includes Date: Mon, 14 Aug 2023 18:57:20 -0700 In-reply-to: <87pm3qhwgo.fsf@posteo.net> Message-ID: <874jl19i6m.fsf@breatheoutbreathe.in> MIME-Version: 1.0 Content-Type: text/plain X-Migadu-Flow: FLOW_OUT X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 65243 Cc: 65243@debbugs.gnu.org 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 (-) Philip Kaludercic writes: > Joseph Turner writes: > >> Hello, >> >> This patch allows for relative includes and link in org files compiled >> to texinfo. > > BTW, what package is this related to? On my machine, (package-vc-install '(hyperdrive :url "https://git.sr.ht/~ushin/hyperdrive.el" :doc "doc/hyperdrive-manual.org")) gives the following backtrace: Debugger entered--Lisp error: (error "Cannot include file /home/joseph/.emacs.d/elpa/hyperdrive/fdl.org") error("Cannot include file %s" "/home/joseph/.emacs.d/elpa/hyperdrive/fdl.org") org-export-expand-include-keyword() org-export-as(texinfo nil nil nil (:output-file "/tmp/ox-texinfo-hqSZfl")) org-export-to-file(texinfo "/tmp/ox-texinfo-hqSZfl") package-vc--build-documentation(#s(package-desc :name hyperdrive :version nil :summary "No description available." :reqs nil :kind vc :archive nil :dir "/home/joseph/.emacs.d/elpa/hyperdrive/" :extras nil :signed nil) "doc/hyperdrive-manual.org") package-vc--unpack-1(#s(package-desc :name hyperdrive :version nil :summary "No description available." :reqs nil :kind vc :archive nil :dir "/home/joseph/.emacs.d/elpa/hyperdrive/" :extras nil :signed nil) "/home/joseph/.emacs.d/elpa/hyperdrive/") package-vc--unpack(#s(package-desc :name hyperdrive :version nil :summary "No description available." :reqs nil :kind vc :archive nil :dir "/home/joseph/.emacs.d/elpa/hyperdrive/" :extras nil :signed nil) (:url "https://git.sr.ht/~ushin/hyperdrive.el" :doc "doc/hyperdrive-manual.org") nil) package-vc-install((hyperdrive :url "https://git.sr.ht/~ushin/hyperdrive.el" :doc "doc/hyperdrive-manual.org")) "/home/joseph/.emacs.d/elpa/hyperdrive/fdl.org" does not exist, but "/home/joseph/.emacs.d/elpa/hyperdrive/doc/fdl.org" does. Hope this helps! Joseph From debbugs-submit-bounces@debbugs.gnu.org Sat Aug 19 05:46:45 2023 Received: (at 65243-done) by debbugs.gnu.org; 19 Aug 2023 09:46:45 +0000 Received: from localhost ([127.0.0.1]:49495 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qXIXd-0006tl-7G for submit@debbugs.gnu.org; Sat, 19 Aug 2023 05:46:45 -0400 Received: from mout02.posteo.de ([185.67.36.66]:36505) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qXIXb-0006tL-5K for 65243-done@debbugs.gnu.org; Sat, 19 Aug 2023 05:46:43 -0400 Received: from submission (posteo.de [185.67.36.169]) by mout02.posteo.de (Postfix) with ESMTPS id 94209240101 for <65243-done@debbugs.gnu.org>; Sat, 19 Aug 2023 11:46:36 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1692438396; bh=RIvzT11C7a4FJPCrjiPHAsfhtxRAgp3KBhX3xG8oXig=; h=From:To:Cc:Subject:Autocrypt:Date:Message-ID:MIME-Version:From; b=VKMweto+nuSjoow2qMsAGWi3pyBcZqAEcucmJupAbADcx/snJGpknS/NLfsdmU8Hp B1GsMYzPs8XxvP+ad8hffSi42+h+S2zydkETsR2uHFTQbReePhJHAQ6Z6GOHr5YSQa OrmF1XwOXnG5liMm7LftAHmzPfIxWrO1816+SuLjh0k8BPvaX6pomIc5doRE9w7AY+ TIyBa2ICPMYrDcwGgE6JYtmzhqPV8vwyJnfXdJGD+5IOT78/yDyFIzD8NRQRGvxzd+ a7o1AmZbMPV7JpQOeFx5DnowMLZR/4haGUgmgXgMpeavpuEZF21HDnwiT4pvgVnPN0 +EvL1BgzB5RKg== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4RSYm64PHpz6tx3; Sat, 19 Aug 2023 11:46:30 +0200 (CEST) From: Philip Kaludercic To: Joseph Turner Subject: Re: bug#65243: [PATCH] Fix building of VC package manuals with relative org links/includes In-Reply-To: <87y1ig3atl.fsf@breatheoutbreathe.in> (Joseph Turner's message of "Sat, 12 Aug 2023 01:43:35 -0700") References: <87y1ig3atl.fsf@breatheoutbreathe.in> Autocrypt: addr=philipk@posteo.net; keydata= mDMEZBBQQhYJKwYBBAHaRw8BAQdAHJuofBrfqFh12uQu0Yi7mrl525F28eTmwUDflFNmdui0QlBo aWxpcCBLYWx1ZGVyY2ljIChnZW5lcmF0ZWQgYnkgYXV0b2NyeXB0LmVsKSA8cGhpbGlwa0Bwb3N0 ZW8ubmV0PoiWBBMWCAA+FiEEDg7HY17ghYlni8XN8xYDWXahwukFAmQQUEICGwMFCQHhM4AFCwkI BwIGFQoJCAsCBBYCAwECHgECF4AACgkQ8xYDWXahwulikAEA77hloUiSrXgFkUVJhlKBpLCHUjA0 mWZ9j9w5d08+jVwBAK6c4iGP7j+/PhbkxaEKa4V3MzIl7zJkcNNjHCXmvFcEuDgEZBBQQhIKKwYB BAGXVQEFAQEHQI5NLiLRjZy3OfSt1dhCmFyn+fN/QKELUYQetiaoe+MMAwEIB4h+BBgWCAAmFiEE Dg7HY17ghYlni8XN8xYDWXahwukFAmQQUEICGwwFCQHhM4AACgkQ8xYDWXahwukm+wEA8cml4JpK NeAu65rg+auKrPOP6TP/4YWRCTIvuYDm0joBALw98AMz7/qMHvSCeU/hw9PL6u6R2EScxtpKnWof z4oM Date: Sat, 19 Aug 2023 09:46:29 +0000 Message-ID: <87zg2nweiy.fsf@posteo.net> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 65243-done Cc: 65243-done@debbugs.gnu.org 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 (---) Joseph Turner writes: > Hello, > > This patch allows for relative includes and link in org files compiled > to texinfo. > > Unfortunately, I missed this back in May > (commit 1e6a7594 ), when we fixed relative texi @include links. > > I'm not sure how the Emacs release cycle works. Would it be possible to > include this fix in 29.2? I have applies the patch to emacs-29, and will close the report. Thanks! > Best, > > Joseph From unknown Sat Aug 16 21:21:10 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 16 Sep 2023 11:24:08 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator