Browse Source

removed spurious "\t" in ruby variable assignation

Eric Schulte 16 years ago
parent
commit
018a8fcb98
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lisp/org-babel-ruby.el

+ 1 - 1
lisp/org-babel-ruby.el

@@ -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