[GRASS-SVN] r37025 - grass/branches/develbranch_6/raster/r.recode

svn_grass at osgeo.org svn_grass at osgeo.org
Wed May 6 08:22:08 EDT 2009


Author: hamish
Date: 2009-05-06 08:22:08 -0400 (Wed, 06 May 2009)
New Revision: 37025

Modified:
   grass/branches/develbranch_6/raster/r.recode/read_rules.c
Log:
expand help text (merge from relbr64)

Modified: grass/branches/develbranch_6/raster/r.recode/read_rules.c
===================================================================
--- grass/branches/develbranch_6/raster/r.recode/read_rules.c	2009-05-06 12:19:49 UTC (rev 37024)
+++ grass/branches/develbranch_6/raster/r.recode/read_rules.c	2009-05-06 12:22:08 UTC (rev 37025)
@@ -85,10 +85,14 @@
 
 	if (strcmp(buf, "help") == 0) {
 	    G_message(_("Enter a rule in one of these formats:"));
+	    G_message(" ");
 	    G_message(_("old_low:old_high:new_low:new_high"));
 	    G_message(_("old_low:old_high:new_val      (i.e. new_high == new_low)"));
 	    G_message(_("*:old_val:new_val             (interval [inf, old_val])"));
 	    G_message(_("old_val:*:new_val             (interval [old_val, inf])"));
+	    G_message(" ");
+	    G_message(_("When finished type \"end\"."));
+
 	    continue;
 	}
 



More information about the grass-commit mailing list