tangle: ensure that full info (with expanded variables) for tangling blocks

This commit is contained in:
Eric Schulte 2010-10-21 07:00:24 -06:00
parent db68b1fbf5
commit 65217b7fb4
1 changed files with 5 additions and 5 deletions

View File

@ -286,11 +286,11 @@ code blocks by language."
(src-lang (nth 0 info)))
(unless (string= (cdr (assoc :tangle (nth 2 info))) "no")
(unless (and language (not (string= language src-lang)))
(let* ((params (nth 2 info))
(link (unless (string= (cdr (assoc :tangle params)) "no")
(progn (call-interactively 'org-store-link)
(org-babel-clean-text-properties
(car (pop org-stored-links))))))
(let* ((info (org-babel-get-src-block-info))
(params (nth 2 info))
(link (progn (call-interactively 'org-store-link)
(org-babel-clean-text-properties
(car (pop org-stored-links)))))
(source-name
(intern (or (nth 4 info)
(format "%s:%d"