Changeset 32263


Ignore:
Timestamp:
Jul 24, 2008, 8:16:43 AM (16 years ago)
Author:
martinl
Message:

glynn: Only treat an argument as an option if the character preceding the first '=' is alphanumeric (update of r32259; merged from trunk, r32261)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • grass/branches/develbranch_6/lib/gis/parser.c

    r32262 r32263  
    21602160                return 0;
    21612161        p--;
    2162         if (*p == ' ' || *p == '\t')
     2162        if (!strchr("abcdefghijklmnopqrstuvwxyz0123456789", *p))
    21632163                return 0;
    21642164
Note: See TracChangeset for help on using the changeset viewer.