org-babel-session.el 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. ;;; org-babel-session.el --- session management for org-babel
  2. ;; Copyright (C) 2009 Eric Schulte, Dan Davison
  3. ;; Author: Eric Schulte, Dan Davison
  4. ;; Keywords: literate programming, reproducible research
  5. ;; Homepage: http://orgmode.org
  6. ;; Version: 0.01
  7. ;;; License:
  8. ;; This program is free software; you can redistribute it and/or modify
  9. ;; it under the terms of the GNU General Public License as published by
  10. ;; the Free Software Foundation; either version 3, or (at your option)
  11. ;; any later version.
  12. ;;
  13. ;; This program is distributed in the hope that it will be useful,
  14. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. ;; GNU General Public License for more details.
  17. ;;
  18. ;; You should have received a copy of the GNU General Public License
  19. ;; along with GNU Emacs; see the file COPYING. If not, write to the
  20. ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  21. ;; Boston, MA 02110-1301, USA.
  22. ;;; Commentary:
  23. ;; Org-Babel evaluates code in the context of consistent sessions.
  24. ;; This file will hold functions for interacting with these sections.
  25. ;;
  26. ;; For more information see org-babel.org in the top level directory.
  27. ;;; Code:
  28. (require 'org-babel)
  29. (defcustom org-babel-session-defaults nil
  30. "An a-list associating each org-babel interpreter with a
  31. default session buffer."
  32. :group 'org-babel
  33. :type 'alist)
  34. (provide 'org-babel-session)
  35. ;;; org-babel-session.el ends here