]> code.delx.au - gnu-emacs/blob - lisp/org/ob.el
Update copyright year to 2016
[gnu-emacs] / lisp / org / ob.el
1 ;;; ob.el --- working with code blocks in org-mode
2
3 ;; Copyright (C) 2009-2016 Free Software Foundation, Inc.
4
5 ;; Authors: Eric Schulte
6 ;; Keywords: literate programming, reproducible research
7 ;; Homepage: http://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 <http://www.gnu.org/licenses/>.
23
24 ;;; Code:
25 (require 'org-macs)
26 (require 'org-compat)
27 (require 'ob-eval)
28 (require 'ob-core)
29 (require 'ob-comint)
30 (require 'ob-exp)
31 (require 'ob-keys)
32 (require 'ob-table)
33 (require 'ob-lob)
34 (require 'ob-ref)
35 (require 'ob-tangle)
36
37 (provide 'ob)
38
39 ;; Local variables:
40 ;; generated-autoload-file: "org-loaddefs.el"
41 ;; End:
42
43 ;;; ob.el ends here