Skip to content

Commit

Permalink
org-babel-tangle-single-block: Do not create comment link when not re…
Browse files Browse the repository at this point in the history
…quested

* lisp/ob-tangle.el (org-babel-tangle-single-block): Do not spend
extra time creating link to source block when :comments is set to
"no".
  • Loading branch information
yantar92 committed Jul 31, 2022
1 parent f095cfc commit 0d3bf2e
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions lisp/ob-tangle.el
Original file line number Diff line number Diff line change
Expand Up @@ -485,16 +485,20 @@ non-nil, return the full association list to be used by
(extra (nth 3 info))
(coderef (nth 6 info))
(cref-regexp (org-src-coderef-regexp coderef))
(link (let* (
;; The created link is transient. Using ID is
;; not necessary, but could have side-effects if
;; used. An ID property may be added to
;; existing entries thus creatin unexpected file
;; modifications.
(org-id-link-to-org-use-id nil)
(l (org-no-properties (org-store-link nil))))
(and (string-match org-link-bracket-re l)
(match-string 1 l))))
(link (if (string= "no" (cdr (assq :comments params))) ""
(let* (
;; The created link is transient. Using ID is
;; not necessary, but could have side-effects if
;; used. An ID property may be added to
;; existing entries thus creating unexpected
;; file modifications.
(org-id-link-to-org-use-id nil)
(l (org-no-properties
(cl-letf (((symbol-function 'org-store-link-functions)
(lambda () nil)))
(org-store-link nil)))))
(and (string-match org-link-bracket-re l)
(match-string 1 l)))))
(source-name
(or (nth 4 info)
(format "%s:%d"
Expand Down

0 comments on commit 0d3bf2e

Please sign in to comment.