ob.el 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. ;;; ob.el --- working with code blocks in org-mode
  2. ;; Copyright (C) 2009-2012 Free Software Foundation, Inc.
  3. ;; Authors: Eric Schulte
  4. ;; Keywords: literate programming, reproducible research
  5. ;; Homepage: http://orgmode.org
  6. ;; This file is part of GNU Emacs.
  7. ;; GNU Emacs is free software: you can redistribute it and/or modify
  8. ;; it under the terms of the GNU General Public License as published by
  9. ;; the Free Software Foundation, either version 3 of the License, or
  10. ;; (at your option) any later version.
  11. ;; GNU Emacs is distributed in the hope that it will be useful,
  12. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. ;; GNU General Public License for more details.
  15. ;; You should have received a copy of the GNU General Public License
  16. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  17. ;;; Code:
  18. (require 'ob-eval)
  19. (require 'ob-core)
  20. (require 'ob-comint)
  21. (require 'ob-exp)
  22. (require 'ob-keys)
  23. (require 'ob-table)
  24. (require 'ob-lob)
  25. (require 'ob-ref)
  26. (require 'ob-tangle)
  27. (provide 'ob)
  28. ;; Local variables:
  29. ;; generated-autoload-file: "org-loaddefs.el"
  30. ;; End:
  31. ;;; ob.el ends here