소스 검색

removed spurious "\t" in ruby variable assignation

Eric Schulte 16 년 전
부모
커밋
018a8fcb98
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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