summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Davison <davison@stats.ox.ac.uk>2010-10-14 22:03:08 +0100
committerDan Davison <davison@stats.ox.ac.uk>2010-10-21 13:05:58 +0100
commit07b45a64f29168889cc11bd931493eca8166d4c6 (patch)
tree9d3e6aa9733ef7668f28ca7f190575b23c1ee403
parenta06ea76c53d217132a7aeb47684cf5bd3d00ef81 (diff)
downloadorg-mode-07b45a64f29168889cc11bd931493eca8166d4c6.tar.gz
Missing parenthesis
-rw-r--r--lisp/ob-sh.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ob-sh.el b/lisp/ob-sh.el
index bb86ce1..d258100 100644
--- a/lisp/ob-sh.el
+++ b/lisp/ob-sh.el
@@ -51,7 +51,7 @@ This will be passed to `shell-command-on-region'")
(mapconcat
#'identity
(append (org-babel-sh-variable-assignments params processed-params)
- (list body)) "\n")
+ (list body)) "\n"))
(defun org-babel-execute:sh (body params)
"Execute a block of Shell commands with Babel.