[GRASS-SVN] r34643 - grass/branches/develbranch_6/vector/v.out.ascii

svn_grass at osgeo.org svn_grass at osgeo.org
Sun Nov 30 17:28:57 EST 2008


Author: neteler
Date: 2008-11-30 17:28:57 -0500 (Sun, 30 Nov 2008)
New Revision: 34643

Modified:
   grass/branches/develbranch_6/vector/v.out.ascii/out.c
Log:
added 'comma' as field separator (merge from trunk , r34642)

Modified: grass/branches/develbranch_6/vector/v.out.ascii/out.c
===================================================================
--- grass/branches/develbranch_6/vector/v.out.ascii/out.c	2008-11-30 22:28:42 UTC (rev 34642)
+++ grass/branches/develbranch_6/vector/v.out.ascii/out.c	2008-11-30 22:28:57 UTC (rev 34643)
@@ -116,6 +116,8 @@
 	fs = "\t";
     if (strcmp(fs, "space") == 0)
 	fs = " ";
+    if (strcmp(fs, "comma") == 0)
+	fs = ",";
 
     /*The precision of the output */
     if (dp_opt->answer) {



More information about the grass-commit mailing list