ob.el 1.3 KB

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