[GRASS-SVN] r40984 - grass/trunk/raster/r.colors.out

svn_grass at osgeo.org svn_grass at osgeo.org
Sat Feb 13 21:16:56 EST 2010


Author: glynn
Date: 2010-02-13 21:16:55 -0500 (Sat, 13 Feb 2010)
New Revision: 40984

Modified:
   grass/trunk/raster/r.colors.out/main.c
Log:
map= is required


Modified: grass/trunk/raster/r.colors.out/main.c
===================================================================
--- grass/trunk/raster/r.colors.out/main.c	2010-02-14 01:10:45 UTC (rev 40983)
+++ grass/trunk/raster/r.colors.out/main.c	2010-02-14 02:16:55 UTC (rev 40984)
@@ -66,13 +66,13 @@
 	_("Exports the color table associated with a raster map layer.");
 
     opt.map = G_define_standard_option(G_OPT_R_MAP);
-    opt.map->required = NO;
+    opt.map->required = YES;
     opt.map->guisection = _("Required");
 
     opt.file = G_define_standard_option(G_OPT_F_OUTPUT);
     opt.file->key = "rules";
     opt.file->required = NO;
-    opt.file->description = _("Path to rules file (\"-\" to write rules to stdin)");
+    opt.file->description = _("Path to rules file (\"-\" to write rules to stdout)");
 
     flag.p = G_define_flag();
     flag.p->key = 'p';



More information about the grass-commit mailing list