SF.net SVN: geany:[3393] trunk

eht16 at users.sourceforge.net eht16 at xxxxx
Wed Dec 17 16:01:09 UTC 2008


Revision: 3393
          http://geany.svn.sourceforge.net/geany/?rev=3393&view=rev
Author:   eht16
Date:     2008-12-17 16:01:09 +0000 (Wed, 17 Dec 2008)

Log Message:
-----------
Change comment character to '!' for Fortran 90 (closes #2438423).

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/data/filetypes.fortran
    trunk/src/filetypes.c

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2008-12-17 16:00:41 UTC (rev 3392)
+++ trunk/ChangeLog	2008-12-17 16:01:09 UTC (rev 3393)
@@ -16,6 +16,8 @@
    Make Ctrl-click working again to create rectangular selections when
    no braces and valid definitions are below the cursor (to whose would
    be jumped then).
+ * src/filetypes.c, data/filetypes.fortran:
+   Change comment character to '!' for Fortran 90 (closes #2438423).
 
 
 2008-12-16  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>

Modified: trunk/data/filetypes.fortran
===================================================================
--- trunk/data/filetypes.fortran	2008-12-17 16:00:41 UTC (rev 3392)
+++ trunk/data/filetypes.fortran	2008-12-17 16:01:09 UTC (rev 3393)
@@ -34,7 +34,7 @@
 #wordchars=_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
 
 # if only single comment char is supported like # in this file, leave comment_close blank
-comment_open=c
+comment_open=!
 comment_close=
 
 # set to false if a comment character/string should start at column 0 of a line, true uses any

Modified: trunk/src/filetypes.c
===================================================================
--- trunk/src/filetypes.c	2008-12-17 16:00:41 UTC (rev 3392)
+++ trunk/src/filetypes.c	2008-12-17 16:01:09 UTC (rev 3393)
@@ -187,7 +187,7 @@
 	ft->title = g_strdup_printf(_("%s source file"), "Fortran (F90)");
 	ft->extension = g_strdup("f90");
 	ft->pattern = utils_strv_new("*.f90", "*.f95", "*.f03", NULL);
-	ft->comment_open = g_strdup("c");
+	ft->comment_open = g_strdup("!");
 	ft->comment_close = NULL;
 	ft->group = GEANY_FILETYPE_GROUP_COMPILED;
 


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