[GRASS-SVN] r59252 - grass/trunk/vector/v.lrs/v.lrs.create

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Mar 13 14:18:35 PDT 2014


Author: neteler
Date: 2014-03-13 14:18:35 -0700 (Thu, 13 Mar 2014)
New Revision: 59252

Modified:
   grass/trunk/vector/v.lrs/v.lrs.create/main.c
Log:
v.lrs.create: store vector history

Modified: grass/trunk/vector/v.lrs/v.lrs.create/main.c
===================================================================
--- grass/trunk/vector/v.lrs/v.lrs.create/main.c	2014-03-13 21:16:35 UTC (rev 59251)
+++ grass/trunk/vector/v.lrs/v.lrs.create/main.c	2014-03-13 21:18:35 UTC (rev 59252)
@@ -862,6 +862,11 @@
     Vect_close(&PMap);
 
     G_message(_("Building topology for output (out_lines) map..."));
+
+    Vect_copy_head_data(&In, &Out);
+    Vect_hist_copy(&In, &Out);
+    Vect_hist_command(&Out);
+
     Vect_build(&Out);
     Vect_close(&Out);
 



More information about the grass-commit mailing list