[GRASS-SVN] r62220 - in grass/trunk/general: g.list g.remove

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Oct 9 02:11:48 PDT 2014


Author: annakrat
Date: 2014-10-09 02:11:48 -0700 (Thu, 09 Oct 2014)
New Revision: 62220

Modified:
   grass/trunk/general/g.list/main.c
   grass/trunk/general/g.remove/main.c
Log:
g.list/remove: do not add mapset to the selected name in GUI

Modified: grass/trunk/general/g.list/main.c
===================================================================
--- grass/trunk/general/g.list/main.c	2014-10-08 21:19:54 UTC (rev 62219)
+++ grass/trunk/general/g.list/main.c	2014-10-09 09:11:48 UTC (rev 62220)
@@ -93,7 +93,7 @@
     opt.pattern->type = TYPE_STRING;
     opt.pattern->required = NO;
     opt.pattern->multiple = NO;
-    opt.pattern->gisprompt = "old,element,element";
+    opt.pattern->gisprompt = "new,element,element";
     opt.pattern->description = _("Map name search pattern (default: all)");
     opt.pattern->guisection = _("Pattern");
 
@@ -102,7 +102,7 @@
     opt.exclude->type = TYPE_STRING;
     opt.exclude->required = NO;
     opt.exclude->multiple = NO;
-    opt.exclude->gisprompt = "old,element,element";
+    opt.exclude->gisprompt = "new,element,element";
     opt.exclude->description = _("Map name exclusion pattern (default: none)");
     opt.exclude->guisection = _("Pattern");
 

Modified: grass/trunk/general/g.remove/main.c
===================================================================
--- grass/trunk/general/g.remove/main.c	2014-10-08 21:19:54 UTC (rev 62219)
+++ grass/trunk/general/g.remove/main.c	2014-10-09 09:11:48 UTC (rev 62220)
@@ -79,7 +79,7 @@
     opt.pattern->key = "pattern";
     opt.pattern->type = TYPE_STRING;
     opt.pattern->required = YES;
-    opt.pattern->gisprompt = "old,element,element";
+    opt.pattern->gisprompt = "new,element,element";
     opt.pattern->description = _("Map name search pattern or map names separated by a comma");
     opt.pattern->guisection = _("Pattern");
 
@@ -87,7 +87,7 @@
     opt.exclude->key = "exclude";
     opt.exclude->type = TYPE_STRING;
     opt.exclude->required = NO;
-    opt.exclude->gisprompt = "old,element,element";
+    opt.exclude->gisprompt = "new,element,element";
     opt.exclude->description = _("Map name exclusion pattern (default: none)");
     opt.exclude->guisection = _("Pattern");
 



More information about the grass-commit mailing list