Update copyright years again.
[org-mode.git] / lisp / ob.el
blob87657fef848efdbc9dcd9efd5faaf84c3e7b6a35
1 ;;; ob.el --- working with code blocks in org-mode
3 ;; Copyright (C) 2009-2014 Free Software Foundation, Inc.
5 ;; Authors: Eric Schulte
6 ;; Keywords: literate programming, reproducible research
7 ;; Homepage: http://orgmode.org
9 ;; This file is part of GNU Emacs.
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.
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.
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/>.
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)
37 (provide 'ob)
39 ;; Local variables:
40 ;; generated-autoload-file: "org-loaddefs.el"
41 ;; End:
43 ;;; ob.el ends here