Eric Schulte 15 years ago
parent
commit
0751f2ebfa
3 changed files with 4 additions and 2 deletions
  1. 1 1
      lisp/babel/langs/ob-emacs-lisp.el
  2. 1 1
      lisp/babel/langs/ob-sh.el
  3. 2 0
      lisp/babel/ob-init.el

+ 1 - 1
lisp/babel/langs/ob-emacs-lisp.el

@@ -74,5 +74,5 @@
        (org-babel-pick-name (nth 4 processed-params) (cdr (assoc :colnames params)))
        (org-babel-pick-name (nth 5 processed-params) (cdr (assoc :rownames params)))))))
 
-(provide 'obemacs-lisp)
+(provide 'ob-emacs-lisp)
 ;;; ob-emacs-lisp.el ends here

+ 1 - 1
lisp/babel/langs/ob-sh.el

@@ -175,7 +175,7 @@ last statement in BODY."
                      (mapcar #'org-babel-sh-strip-weird-long-prompt
                              (mapcar #'org-babel-trim
                                      (org-babel-comint-with-output
-                                         (session org-babel-sh-eoe-output t full-body)
+                                         (session org-babel-sh-eoe-output t body)
                                        (mapc (lambda (line) (insert line) (comint-send-input))
                                              (strip-empty (split-string body "\n")))
                                        (insert org-babel-sh-eoe-indicator)

+ 2 - 0
lisp/babel/ob-init.el

@@ -7,6 +7,8 @@
 (require 'ob-comint)
 (require 'ob-table)
 (require 'ob-keys)
+(require 'ob-sh)
+(require 'ob-emacs-lisp)
 
 (provide 'ob-init)
 ;;; ob-init.el ends here