From 26e817ac20b25fab405bc691db39a8c7c3873d08 Mon Sep 17 00:00:00 2001 From: Deech Date: Thu, 8 Mar 2012 13:25:14 -0600 Subject: [PATCH] The link generated by org-store-link is escaped twice when tangling with ":comments yes" flag. * ob-tangle.el (org-babel-spec-to-string): The link generated by org-store-link is escaped twice when tangling with ":comments yes" flag. --- lisp/ob-tangle.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/ob-tangle.el b/lisp/ob-tangle.el index 5ff00baa7..a281f423f 100644 --- a/lisp/ob-tangle.el +++ b/lisp/ob-tangle.el @@ -395,7 +395,7 @@ form (start-line file link source-name params body comment)" (let* ((start-line (nth 0 spec)) (file (nth 1 spec)) - (link (org-link-escape (nth 2 spec))) + (link (nth 2 spec)) (source-name (nth 3 spec)) (body (nth 5 spec)) (comment (nth 6 spec)) -- 2.11.4.GIT