bring ob-fortran into the core -- FSF assignment completion

Thanks to Sergey Litvinov for contributing this language support!

* lisp/ob-fortran.el: Adding support for Fortran code blocks.
* Makefile (LISPF): Compile Fortran support.
* lisp/org.el (org-babel-load-languages): Adding fortran to this list.
This commit is contained in:
Eric Schulte 2011-11-08 14:18:57 -07:00
parent 311146aa21
commit 6bbc3566f7
3 changed files with 3 additions and 1 deletions

View File

@ -159,7 +159,8 @@ LISPF = org.el \
ob-scheme.el \
ob-lilypond.el \
ob-java.el \
ob-shen.el
ob-shen.el \
ob-fortran.el
LISPFILES0 = $(LISPF:%=lisp/%)
LISPFILES = $(LISPFILES0) lisp/org-install.el

View File

@ -164,6 +164,7 @@ requirements) is loaded."
(const :tag "Ditaa" ditaa)
(const :tag "Dot" dot)
(const :tag "Emacs Lisp" emacs-lisp)
(const :tag "Fortran" fortran)
(const :tag "Gnuplot" gnuplot)
(const :tag "Haskell" haskell)
(const :tag "Java" java)