Add 2011 to remaining FSF/AIST copyright years.
[bpt/emacs.git] / lisp / org / ob-matlab.el
CommitLineData
86fbb8ca
CD
1;;; ob-matlab.el --- org-babel support for matlab evaluation
2
d0d4361d 3;; Copyright (C) 2010, 2011 Free Software Foundation, Inc.
86fbb8ca
CD
4
5;; Author: Dan Davison
6;; Keywords: literate programming, reproducible research
7;; Homepage: http://orgmode.org
acedf35c 8;; Version: 7.4
86fbb8ca
CD
9
10;; This file is part of GNU Emacs.
11
12;; GNU Emacs is free software: you can redistribute it and/or modify
13;; it under the terms of the GNU General Public License as published by
14;; the Free Software Foundation, either version 3 of the License, or
15;; (at your option) any later version.
16
17;; GNU Emacs is distributed in the hope that it will be useful,
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;; GNU General Public License for more details.
21
22;; You should have received a copy of the GNU General Public License
23;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24
25;;; Commentary:
26
27;; Functions that are common to org-babel support for matlab and
28;; octave are in org-babel-octave.el
29
30;;; Requirements:
31
32;; Matlab
33
34;; matlab.el required for interactive emacs sessions and matlab-mode
35;; major mode for source code editing buffer
36;; http://matlab-emacs.sourceforge.net/
37
38;;; Code:
39(require 'ob)
40(require 'ob-octave)
41
42;; see ob-octave for matlab implementation
43
44(provide 'ob-matlab)
45
46;; arch-tag: 6b234299-c1f7-4eb1-ace8-7b93344065ac
47
48;;; ob-matlab.el ends here