removed spurious "\t" in ruby variable assignation

This commit is contained in:
Eric Schulte 2009-06-12 08:45:43 -07:00
parent 190a66c6af
commit 018a8fcb98
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ called by `org-babel-execute-src-block'."
(full-body (concat
(mapconcat ;; define any variables
(lambda (pair)
(format "\t%s=%s"
(format "%s=%s"
(car pair)
(org-babel-ruby-var-to-ruby (cdr pair))))
vars "\n") "\n" body "\n")) ;; then the source block body