summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDeech <deech@deech-ThinkPad-X200.(none)>2012-03-08 13:25:14 -0600
committerEric Schulte <eric.schulte@gmx.com>2012-03-09 06:54:22 -0700
commit26e817ac20b25fab405bc691db39a8c7c3873d08 (patch)
tree4a6ee88bf0720440c469a5151b0120dd337a3729
parent9cf435800b6b3707417b2e5c985eaa08440e27f0 (diff)
downloadorg-mode-26e817ac20b25fab405bc691db39a8c7c3873d08.tar.gz
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.
-rw-r--r--lisp/ob-tangle.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ob-tangle.el b/lisp/ob-tangle.el
index 5ff00ba..a281f42 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))