summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Maus <dmaus@ictsoc.de>2010-10-24 20:51:24 +0200
committerDavid Maus <dmaus@ictsoc.de>2010-10-24 20:51:24 +0200
commitf70943cafc564fc2202fb98a935113c934054627 (patch)
tree4da39343f4f48c12b2496bd08260a410841a2f84
parent095f9e298fda15d2b66032e657f1b2492576edef (diff)
downloadorg-mode-f70943cafc564fc2202fb98a935113c934054627.tar.gz
Don't pass more than two arguments to mapc
* ob-haskell.el (org-babel-variable-assignments:haskell): Don't pass more than two arguments to mapc.
-rw-r--r--lisp/ob-haskell.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ob-haskell.el b/lisp/ob-haskell.el
index f70198e..f869330 100644
--- a/lisp/ob-haskell.el
+++ b/lisp/ob-haskell.el
@@ -130,7 +130,7 @@ then create one. Return the initialized session."
(format "let %s = %s"
(car pair)
(org-babel-haskell-var-to-haskell (cdr pair))))
- (mapcar #'cdr (org-babel-get-header params :var)) "\n"))
+ (mapcar #'cdr (org-babel-get-header params :var))))
(defun org-babel-haskell-table-or-string (results)
"Convert RESULTS to an Emacs-lisp table or string.