summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Schulte <schulte.eric@gmail.com>2011-11-08 14:18:57 -0700
committerEric Schulte <schulte.eric@gmail.com>2011-11-08 14:18:57 -0700
commit6bbc3566f7c00806f2abfc0d7af969a9ff2a5b30 (patch)
treea69fd253f858faa8a90c8c6ed98ea31d9473867c
parent311146aa2122f3bd64ec71cba0155bdfa0378c66 (diff)
downloadorg-mode-6bbc3566f7c00806f2abfc0d7af969a9ff2a5b30.tar.gz
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.
-rw-r--r--Makefile3
-rw-r--r--lisp/ob-fortran.el (renamed from contrib/babel/langs/ob-fortran.el)0
-rw-r--r--lisp/org.el1
3 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8b9aa4d..c349480 100644
--- a/Makefile
+++ b/Makefile
@@ -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
diff --git a/contrib/babel/langs/ob-fortran.el b/lisp/ob-fortran.el
index 19d56d2..19d56d2 100644
--- a/contrib/babel/langs/ob-fortran.el
+++ b/lisp/ob-fortran.el
diff --git a/lisp/org.el b/lisp/org.el
index 92ced78..5c4ea33 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -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)