ob.el 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. ;;; ob.el --- Working with Code Blocks in Org -*- lexical-binding: t; -*-
  2. ;; Copyright (C) 2009-2018 Free Software Foundation, Inc.
  3. ;; Authors: Eric Schulte
  4. ;; Keywords: literate programming, reproducible research
  5. ;; Homepage: https://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 <https://www.gnu.org/licenses/>.
  17. ;;; Code:
  18. (require 'org-macs)
  19. (require 'org-compat)
  20. (require 'ob-eval)
  21. (require 'ob-core)
  22. (require 'ob-comint)
  23. (require 'ob-exp)
  24. (require 'ob-keys)
  25. (require 'ob-table)
  26. (require 'ob-lob)
  27. (require 'ob-ref)
  28. (require 'ob-tangle)
  29. (provide 'ob)
  30. ;; Local variables:
  31. ;; generated-autoload-file: "org-loaddefs.el"
  32. ;; End:
  33. ;;; ob.el ends here