This is the mail archive of the fortran@gcc.gnu.org mailing list for the GNU Fortran project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Emacs and GFortran


> Date: Tue, 31 Oct 2006 07:10:22 -0800
> From: Steve Kargl <sgk@troutmask.apl.washington.edu>
> Cc: fortran@gcc.gnu.org, emacs-devel@gnu.org
> 
> laptop:kargl[219] gfc -c l.f90
>  In file l.inc:1
> 
>      Included at l.f90:2
> 
>    integer i
>            1
>  In file l.f90:3
> 
>    call i(j)
>            2
> Error: 'i' at (1) has a type, which is not consistent with the CALL at (2)

GCC outputs similar error messages without any difficulty, and without
violating the GNU standard:

  In file included from foo.h:79:,
		   from bar.c:20:
  baz.h:34:10: error: conflicting types for 'whatever'
  another.h:63:7: error: previous declaration of 'whatever' was here

(It doesn't show the actual offending line(s), but adding that would
not interfere with parsing the messages.)

> Is "NO" some difficult concept for you to understand?

Ah, the winning argument...


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]