[GRASS5] Diff fix for s.in.ascii parsing problem.

This little diff seems to fix the parsing problem for s.in.ascii when no
category or other attributes are specified (just dimensions). It's a
very small change.

Index: get_site.c

RCS file: /home/grass/grassrepository/grass/src/sites/s.in.ascii/get_site.c,v
retrieving revision 1.3
diff -r1.3 get_site.c
7c7
< #define isnull(c) (c==(char)NULL)
---

#define isnull(c) (c=='\0')

58c58
< G_squeeze (buf);
---

    buf = G_squeeze (buf);

90a91

  buf = my_next_att(buf);

--
/bin/sh ~/.signature:
Command not found

----------------------------------------
If you want to unsubscribe from GRASS Development Team mailing list write to:
minordomo@geog.uni-hannover.de with
subject 'unsubscribe grass5'

On Sat, Sep 23, 2000 at 01:30:56PM -0700, Eric G . Miller wrote:

This little diff seems to fix the parsing problem for s.in.ascii when no
category or other attributes are specified (just dimensions). It's a
very small change.

Index: get_site.c

RCS file: /home/grass/grassrepository/grass/src/sites/s.in.ascii/get_site.c,v
retrieving revision 1.3
diff -r1.3 get_site.c
7c7
< #define isnull(c) (c==(char)NULL)
---
> #define isnull(c) (c=='\0')
58c58
< G_squeeze (buf);
---
> buf = G_squeeze (buf);
90a91
> buf = my_next_att(buf);

Hi Eric,

thanks for the patch. I have applied it to CVS.

Yours

Markus

----------------------------------------
If you want to unsubscribe from GRASS Development Team mailing list write to:
minordomo@geog.uni-hannover.de with
subject 'unsubscribe grass5'