ox-html: Fix stack overflow in regexp matching
[org-mode.git] / lisp / ob.el
blob6cacac7aed89291e9b84676df5602625abea7c53
1 ;;; ob.el --- working with code blocks in org-mode
3 ;; Copyright (C) 2009-2013 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 'ob-eval)
26 (require 'ob-core)
27 (require 'ob-comint)
28 (require 'ob-exp)
29 (require 'ob-keys)
30 (require 'ob-table)
31 (require 'ob-lob)
32 (require 'ob-ref)
33 (require 'ob-tangle)
35 (provide 'ob)
37 ;; Local variables:
38 ;; generated-autoload-file: "org-loaddefs.el"
39 ;; End:
41 ;;; ob.el ends here