summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Schulte <schulte.eric@gmail.com>2011-06-13 14:58:56 -0700
committerEric Schulte <schulte.eric@gmail.com>2011-06-13 14:58:56 -0700
commit90f6765cdf77c1414726d899f00c77da43f45758 (patch)
tree0c9ed63c9ea9ab6213344663e42ff8de749df806
parentf1c0042967b3b8b6c55737f5db28d21017817725 (diff)
downloadorg-mode-90f6765cdf77c1414726d899f00c77da43f45758.tar.gz
ob-tangle: no longer inserting newlines between appended code blocks
* lisp/ob-tangle.el (org-babel-tangle-combine-named-blocks): No longer inserting newlines between appended code blocks.
-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 1122de3..8c13cf9 100644
--- a/lisp/ob-tangle.el
+++ b/lisp/ob-tangle.el
@@ -395,7 +395,7 @@ same name in the order they appear in the file."
(cdr by-lang)))))
(case org-babel-tangle-named-block-combination
(append (mapconcat #'identity
- named "\n"))
+ named ""))
(first (first named))
(last (car (last named))))))
(add-to-list 'tangled-names name))