dotemacs

My Emacs configuration
git clone git://git.entf.net/dotemacs
Log | Files | Refs | LICENSE

ob.el (1303B)


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