[GRASS-SVN] r37295 - grass/branches/develbranch_6/lib/gis

svn_grass at osgeo.org svn_grass at osgeo.org
Tue May 19 22:19:52 EDT 2009


Author: hamish
Date: 2009-05-19 22:19:52 -0400 (Tue, 19 May 2009)
New Revision: 37295

Modified:
   grass/branches/develbranch_6/lib/gis/parser.c
Log:
allow upper case chars to begin option names (lost in r32263)

Modified: grass/branches/develbranch_6/lib/gis/parser.c
===================================================================
--- grass/branches/develbranch_6/lib/gis/parser.c	2009-05-19 21:17:10 UTC (rev 37294)
+++ grass/branches/develbranch_6/lib/gis/parser.c	2009-05-20 02:19:52 UTC (rev 37295)
@@ -2120,7 +2120,7 @@
     if (p == string)
 	return 0;
     p--;
-    if (!strchr("abcdefghijklmnopqrstuvwxyz0123456789", *p))
+    if (!strchr("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789", *p))
 	return 0;
 
     return 1;



More information about the grass-commit mailing list