* [PATCH} Do not throw error when parameter of :tangle is not a string
@ 2021-07-01 4:01 Jacopo De Simoi
2021-07-08 8:44 ` [PATCH] " Sébastien Miquel
0 siblings, 1 reply; 3+ messages in thread
From: Jacopo De Simoi @ 2021-07-01 4:01 UTC (permalink / raw)
To: Org-mode Org-Mode
[-- Attachment #1: Type: text/plain, Size: 425 bytes --]
Dear All,
in the current master branch, if the parameter :tangle of a src block is not
a string, tangling fails by throwing an error when calling `file-name-
directory' This patch checks if the parameter is a string before calling
`file-name-directory'.
This makes construct such as :tangle (when condition-applies "filename") work
again (as they did a few versions ago…)
Thanks for your time
Best
Jacopo
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-ob-tangle.el-Handle-non-string-arguments-more-gracef.patch --]
[-- Type: text/x-patch; name=0001-ob-tangle.el-Handle-non-string-arguments-more-gracef.patch, Size: 2134 bytes --]
From f08ecdb79ec71ecc94fe006043bd8eacc8ac41a0 Mon Sep 17 00:00:00 2001
From: Jacopo De Simoi <jacopods@protonmail.com>
Date: Mon, 28 Jun 2021 15:42:29 -0400
Subject: [PATCH 1/2] ob-tangle.el: Handle non-string arguments more gracefullu
* lisp/ob-tangle.el (org-babel-tangle-single-block): If the
argument to :tangle is nil (e.g. when parsing conditional
tangling such as (when condition "yes") the current code
throws an error in `file-name-directory'. This commit
checks if the argument is a string before calling the fun
TINYCHANGE
---
lisp/ob-tangle.el | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/lisp/ob-tangle.el b/lisp/ob-tangle.el
index 562776ae8..02379d44e 100644
--- a/lisp/ob-tangle.el
+++ b/lisp/ob-tangle.el
@@ -469,6 +469,7 @@ non-nil, return the full association list to be used by
(match-end 0)
(point-min))))
(point)))))
+ (src-tfile (cdr (assq :tangle params)))
(result
(list start-line
(if org-babel-tangle-use-relative-file-links
@@ -476,11 +477,12 @@ non-nil, return the full association list to be used by
file)
(if (and org-babel-tangle-use-relative-file-links
(string-match org-link-types-re link)
- (string= (match-string 1 link) "file"))
+ (string= (match-string 1 link) "file")
+ (stringp src-tfile))
(concat "file:"
(file-relative-name (substring link (match-end 0))
(file-name-directory
- (cdr (assq :tangle params)))))
+ src-tfile)))
link)
source-name
params
@@ -489,8 +491,7 @@ non-nil, return the full association list to be used by
(org-trim (org-remove-indentation body)))
comment)))
(if only-this-block
- (let* ((src-tfile (cdr (assq :tangle (nth 4 result))))
- (file-name (org-babel-effective-tangled-filename
+ (let* ((file-name (org-babel-effective-tangled-filename
(nth 1 result) src-lang src-tfile)))
(list (cons file-name (list (cons src-lang result)))))
result)))
--
2.31.1
[-- Attachment #3: attachment.asc --]
[-- Type: application/pgp-signature, Size: 499 bytes --]
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] Do not throw error when parameter of :tangle is not a string
2021-07-01 4:01 [PATCH} Do not throw error when parameter of :tangle is not a string Jacopo De Simoi
@ 2021-07-08 8:44 ` Sébastien Miquel
2021-07-08 14:53 ` Jacopo De Simoi
0 siblings, 1 reply; 3+ messages in thread
From: Sébastien Miquel @ 2021-07-08 8:44 UTC (permalink / raw)
To: Jacopo De Simoi, Org-mode Org-Mode
Hi,
Jacopo De Simoi writes:
> in the current master branch, if the parameter :tangle of a src block is not
> a string, tangling fails by throwing an error when calling `file-name-
> directory' This patch checks if the parameter is a string before calling
> `file-name-directory'.
>
> This makes construct such as :tangle (when condition-applies "filename") work
> again (as they did a few versions ago…)
Thanks for the patch. It looks good to me (had to run `dos2unix' to apply).
To clarify, it fixes `:tangle (when condition-applies "filename")' when the
condition doesn't apply, such as `(when nil "filename")'.
Regards,
--
Sébastien Miquel
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] Do not throw error when parameter of :tangle is not a string
2021-07-08 8:44 ` [PATCH] " Sébastien Miquel
@ 2021-07-08 14:53 ` Jacopo De Simoi
0 siblings, 0 replies; 3+ messages in thread
From: Jacopo De Simoi @ 2021-07-08 14:53 UTC (permalink / raw)
To: sebastien.miquel; +Cc: Org-mode Org-Mode
Hi Sébastien,
‐‐‐‐‐‐‐ Original Message ‐‐‐‐‐‐‐
On Thursday, July 8th, 2021 at 4:44 AM, Sébastien Miquel <sebastien.miquel@posteo.eu> wrote:
> Hi,
>
> Jacopo De Simoi writes:
>
> > in the current master branch, if the parameter :tangle of a src block is not
> >
> > a string, tangling fails by throwing an error when calling `file-name- directory' This patch checks if the parameter is a string before calling` file-name-directory'.
> >
> > This makes construct such as :tangle (when condition-applies "filename") work
> >
> > again (as they did a few versions ago…)
>
> Thanks for the patch. It looks good to me (had to run `dos2unix' to apply).
Dos2unix? I'll make sure it doesn't happen again. It might have to do with having sent the patch from Android.
>To clarify, it fixes` :tangle (when condition-applies "filename")' when the
>
> condition doesn't apply, such as `(when nil "filename")'.
Yes, I will update the commit message and resubmit. Thanks!
>
> Regards,
>
> -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
>
> Sébastien Miquel
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-07-08 14:54 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-07-01 4:01 [PATCH} Do not throw error when parameter of :tangle is not a string Jacopo De Simoi
2021-07-08 8:44 ` [PATCH] " Sébastien Miquel
2021-07-08 14:53 ` Jacopo De Simoi
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.