Browse Source

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.
Eric Schulte 13 years ago
parent
commit
6bbc3566f7
3 changed files with 3 additions and 1 deletions
  1. 2 1
      Makefile
  2. 0 0
      lisp/ob-fortran.el
  3. 1 0
      lisp/org.el

+ 2 - 1
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

+ 0 - 0
contrib/babel/langs/ob-fortran.el → lisp/ob-fortran.el


+ 1 - 0
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)