1" Vim compiler file
2" Compiler:	Compaq Visual Fortran
3" Maintainer:	Joh.-G. Simon (johann-guenter.simon@linde-le.com)
4" Last Change:	11/05/2002
5
6if exists("current_compiler")
7  finish
8endif
9let current_compiler = "fortran_cv"
10
11if exists(":CompilerSet") != 2		" older Vim always used :setlocal
12  command -nargs=* CompilerSet setlocal <args>
13endif
14
15let s:cposet = &cpoptions
16set cpoptions-=C
17
18" A workable errorformat for Compaq Visual Fortran
19CompilerSet errorformat=
20		\%E%f(%l)\ :\ Error:%m,
21		\%W%f(%l)\ :\ Warning:%m,
22		\%-Z%p%^%.%#,
23		\%-G%.%#,
24" Compiler call
25CompilerSet makeprg=df\ /nologo\ /noobj\ /c\ %
26" Visual fortran defaults to printing output on stderr
27" Adjust option shellpipe accordingly
28
29let &cpoptions = s:cposet
30unlet s:cposet
31