[GRASS-SVN] r45617 - in grass/branches/develbranch_6/vector: v.out.ascii v.split

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Mar 10 04:22:55 EST 2011


Author: neteler
Date: 2011-03-10 01:22:55 -0800 (Thu, 10 Mar 2011)
New Revision: 45617

Modified:
   grass/branches/develbranch_6/vector/v.out.ascii/b2a.c
   grass/branches/develbranch_6/vector/v.split/main.c
Log:
no dots in msgvector/v.split/main.c

Modified: grass/branches/develbranch_6/vector/v.out.ascii/b2a.c
===================================================================
--- grass/branches/develbranch_6/vector/v.out.ascii/b2a.c	2011-03-10 01:00:48 UTC (rev 45616)
+++ grass/branches/develbranch_6/vector/v.out.ascii/b2a.c	2011-03-10 09:22:55 UTC (rev 45617)
@@ -212,6 +212,8 @@
 		fprintf(ascii, "%s%s%s", xstring, fs, ystring);
 	    }
 
+	    Vect_field_cat_get(Cats, field, fcats);
+	    
 	    if (fcats->n_values > 0) {
 		if (fcats->n_values > 1) {
 		    G_warning(_("Feature has more categories. Only first category (%d) "

Modified: grass/branches/develbranch_6/vector/v.split/main.c
===================================================================
--- grass/branches/develbranch_6/vector/v.split/main.c	2011-03-10 01:00:48 UTC (rev 45616)
+++ grass/branches/develbranch_6/vector/v.split/main.c	2011-03-10 09:22:55 UTC (rev 45617)
@@ -51,14 +51,14 @@
     length_opt->type = TYPE_DOUBLE;
     length_opt->required = NO;
     length_opt->multiple = NO;
-    length_opt->description = "Maximum segment length.";
+    length_opt->description = "Maximum segment length";
 
     vertices_opt = G_define_option();
     vertices_opt->key = "vertices";
     vertices_opt->type = TYPE_INTEGER;
     vertices_opt->required = NO;
     vertices_opt->multiple = NO;
-    vertices_opt->description = "Maximum number of vertices in segment.";
+    vertices_opt->description = "Maximum number of vertices in segment";
 
     if (G_parser(argc, argv))
 	exit(EXIT_FAILURE);



More information about the grass-commit mailing list