SF.net SVN: geany:[3600] trunk

eht16 at users.sourceforge.net eht16 at xxxxx
Wed Feb 25 23:25:06 UTC 2009


Revision: 3600
          http://geany.svn.sourceforge.net/geany/?rev=3600&view=rev
Author:   eht16
Date:     2009-02-25 23:25:06 +0000 (Wed, 25 Feb 2009)

Log Message:
-----------
Fix wrong Fortran 90 comment characters when inserting templates.

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/src/templates.c

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2009-02-24 18:27:21 UTC (rev 3599)
+++ trunk/ChangeLog	2009-02-25 23:25:06 UTC (rev 3600)
@@ -1,3 +1,9 @@
+2009-02-25  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
+
+ * src/templates.c:
+   Fix wrong Fortran 90 comment characters when inserting templates.
+
+
 2009-02-24  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
 
  * configure.in, plugins/Makefile.am:

Modified: trunk/src/templates.c
===================================================================
--- trunk/src/templates.c	2009-02-24 18:27:21 UTC (rev 3599)
+++ trunk/src/templates.c	2009-02-25 23:25:06 UTC (rev 3600)
@@ -616,9 +616,14 @@
 			break;
 		}
 
-		case GEANY_FILETYPES_F77:
 		case GEANY_FILETYPES_FORTRAN:
 		{
+			line_prefix = "!";
+			break;
+		}
+
+		case GEANY_FILETYPES_F77:
+		{
 			line_prefix = "c";
 			break;
 		}


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Commits mailing list