Browse Source

cleaned up org-babel-comint and removed helper functions

Eric Schulte 16 years ago
parent
commit
b533d9d446
1 changed files with 1 additions and 9 deletions
  1. 1 9
      lisp/org-babel-comint.el

+ 1 - 9
lisp/org-babel-comint.el

@@ -82,13 +82,5 @@ then return the result as a string using
                             comint-last-input-start))
                       (- (point) 1)))))
 
-;;; misc debugging helper functions
-(defun org-babel-comint-pmark (buffer)
-  (org-babel-comint-in-buffer buffer (comint-goto-process-mark) (point)))
-
-(defun org-babel-comint-send-invisible (buffer cmd)
-  "send CMD to the process in BUFFER without an echo"
-  (org-babel-comint-in-buffer buffer
-   (funcall comint-input-sender (get-buffer-process (current-buffer)) cmd)))
-
+(provide 'org-babel-comint)
 ;;; org-babel-comint.el ends here