2 " Compiler: Essential Lahey Fortran 90
3 " Probably also works for Lahey Fortran 90
4 " URL: http://www.unb.ca/chem/ajit/compiler/fortran_elf90.vim
5 " Maintainer: Ajit J. Thakkar (ajit AT unb.ca); <http://www.unb.ca/chem/ajit/>
7 " Last Change: 2004 Mar 27
9 if exists("current_compiler")
12 let current_compiler = "fortran_elf90"
14 if exists(":CompilerSet") != 2 " older Vim always used :setlocal
15 command -nargs=* CompilerSet setlocal <args>
18 let s:cposet=&cpoptions
21 CompilerSet errorformat=\%ALine\ %l\\,\ file\ %f,
30 CompilerSet makeprg=elf90
32 let &cpoptions=s:cposet