After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 680398 - Fortran: comma at begin of argument list description in case of implicit type
Fortran: comma at begin of argument list description in case of implicit type
Status: VERIFIED FIXED
Product: doxygen
Classification: Other
Component: general
1.8.1.2-SVN
Other Windows
: Normal normal
: ---
Assigned To: Dimitri van Heesch
Dimitri van Heesch
Depends on:
Blocks:
 
 
Reported: 2012-07-22 11:39 UTC by albert
Modified: 2012-08-12 12:28 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
PATCH: remove unwanted comma in argument list (2.59 KB, patch)
2012-07-22 11:43 UTC, albert
none Details | Review

Description albert 2012-07-22 11:39:39 UTC
In case an argument of a Fortran routine has no type (e.g. it is implicitly typed) but has an other attribute then the first character in the documentation is a ','

Example program:
================
Subroutine test(a, b, c)
  external a
  dimension(5) b
  dimension(15) c
  logical c
end subroutine

Example output:
===============
subroutine test (, external  	a,
		 , dimension(5)  	b,
		logical, dimension(15)  	c 
	) 	

Correct output:
===============
subroutine test (external  	a,
		 dimension(5)  	b,
		logical, dimension(15)  	c 
	)
Comment 1 albert 2012-07-22 11:43:11 UTC
Created attachment 219412 [details] [review]
PATCH: remove unwanted comma in argument list

This patch removes an unwanted comma at the beginning of the argument description
Comment 2 Dimitri van Heesch 2012-07-28 19:15:45 UTC
Thanks, I'll include the patch in the next subversion update.
Comment 3 Dimitri van Heesch 2012-08-11 13:18:28 UTC
This bug was previously marked ASSIGNED, which means it should be fixed in
doxygen version 1.8.2. Please verify if this is indeed the case. Reopen the
bug if you think it is not fixed and please include any additional information
that you think can be relevant.
Comment 4 albert 2012-08-12 12:28:48 UTC
Works as described