(tend_nxtitem,nxtitem,sarg_type,snxtitem,snxtitem_all,snxtsct,nxtitemp):

change NS_ALL to NS_EVERYTHING in ns_seltype because of a
conflict with winsock2.h which is used in the WIN32 build.
This commit is contained in:
Ron Koenderink 2004-12-31 20:14:10 +00:00
parent 9b56e4d5a0
commit c99a5b4f43
7 changed files with 14 additions and 14 deletions

View file

@ -48,7 +48,7 @@
* #1, lx:ly,hx:hy --> NS_AREA
* @x,y:dist --> NS_DIST
* %d or %d/%d/%d --> NS_LIST
* * --> NS_ALL
* * --> NS_EVERYTHING
*
* or 0 for none of the above.
*/
@ -61,7 +61,7 @@ sarg_type(char *str)
if (c == '@')
return NS_DIST;
if (c == '*')
return NS_ALL;
return NS_EVERYTHING;
if (c == '#' || strchr(str, ',') != 0)
return NS_AREA;
if (isdigit(c))