From fa3385e68bc8f306b5105d99950ba002a571befc Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Wed, 13 Feb 2013 15:15:42 +0100 Subject: [PATCH] ob-tangle.el (org-babel-tangle-collect-blocks): Bugfix: remove code references from blocks * ob-tangle.el (org-babel-tangle-collect-blocks): Bugfix: remove code references from blocks. Thanks a lot to Michael Alan Dorman for reporting this. --- lisp/ob-tangle.el | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lisp/ob-tangle.el b/lisp/ob-tangle.el index 89457f191..c3b6a483e 100644 --- a/lisp/ob-tangle.el +++ b/lisp/ob-tangle.el @@ -371,6 +371,10 @@ code blocks by language." (unless (and language (not (string= language src-lang))) (let* ((info (org-babel-get-src-block-info)) (params (nth 2 info)) + (extra (nth 3 info)) + (cref-fmt (or (and (string-match "-l \"\\(.+\\)\"" extra) + (match-string 1 extra)) + org-coderef-label-format)) (link ((lambda (link) (and (string-match org-bracket-link-regexp link) (match-string 1 link))) @@ -388,6 +392,11 @@ code blocks by language." ((lambda (body) ;; run the tangle-body-hook (with-temp-buffer (insert body) + (when (string-match "-r" extra) + (goto-char (point-min)) + (while (re-search-forward + (replace-regexp-in-string "%s" ".+" cref-fmt) nil t) + (replace-match ""))) (run-hooks 'org-babel-tangle-body-hook) (buffer-string))) ((lambda (body) ;; expand the body in language specific manner -- 2.11.4.GIT