0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-08-23 22:18:40 +00:00

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.
This commit is contained in:
Deech 2012-03-08 13:25:14 -06:00 committed by Eric Schulte
parent 9cf435800b
commit 26e817ac20

View file

@ -395,7 +395,7 @@ form
(start-line file link source-name params body comment)" (start-line file link source-name params body comment)"
(let* ((start-line (nth 0 spec)) (let* ((start-line (nth 0 spec))
(file (nth 1 spec)) (file (nth 1 spec))
(link (org-link-escape (nth 2 spec))) (link (nth 2 spec))
(source-name (nth 3 spec)) (source-name (nth 3 spec))
(body (nth 5 spec)) (body (nth 5 spec))
(comment (nth 6 spec)) (comment (nth 6 spec))