Emacs and GFortran
Angelo Graziosi
Angelo.Graziosi@roma1.infn.it
Tue Oct 31 10:55:00 GMT 2006
The only difference between G95 and GFortran is a blank space at (***):
----------------------------------------------------------
$ g95 hello.F
In file hello.F:3 (***)
write(*,) 'Hello!'
1
Error: Syntax error in WRITE statement at (1)
$ gfc hello.F
In file hello.F:3 (***)
write(*,) 'Hello!'
1
Error: Syntax error in WRITE statement at (1)
-----------------------------------------------------------
So is there a way to adjust .emacs?
Angelo.
On Mon, 30 Oct 2006, Tobias Burnus wrote:
> Hi,
>
> Angelo Graziosi wrote:
> >> By the way, g95 has the same problem.
> >>
> >
> > Adding
> >
> > (eval-after-load "compile"
> > '(setq compilation-error-regexp-alist
> > (cons '("^In file \\(.+\\):\\([0-9]+\\)" 1 2)
> > compilation-error-regexp-alist)))
> >
> > in .emacs solves it.
> >
> >
> > So, is there something similar for GFortran ?
> >
> Doesn't this work for gfortran? I think the output is the same:
> "In file <filename>:<line>".
> Thus it should work with both compilers. (It probably predates the
> g95-gfortran split.)
>
> Tobias
>
More information about the Fortran
mailing list