bug-global
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Global-commit] global/htags dupindex.c


From: Shigio Yamaguchi
Subject: Re: [Global-commit] global/htags dupindex.c
Date: Sun, 05 Feb 2006 12:25:41 +0900

> Note that both of --nofilter=path and --nofilter=sort cannot be specified.
> 
> global.c
>   201                                 if (!strcmp(optarg, "sort"))
>   202                                         nofilter = SORT_FILTER;
>   203                                 else if (!strcmp(optarg, "path"))
>   204                                         nofilter = PATH_FILTER;

I think that both options should be accepted at the same time.
I have modified above code like follows:

diff -r1.135 global.c
202c202
<                                       nofilter = SORT_FILTER;
---
>                                       nofilter |= SORT_FILTER;
204c204
<                                       nofilter = PATH_FILTER;
---
>                                       nofilter |= PATH_FILTER;
--
Shigio YAMAGUCHI <address@hidden> - Tama Communications Corporation
PGP fingerprint: D1CB 0B89 B346 4AB6 5663  C4B6 3CA5 BBB3 57BE DDA3




reply via email to

[Prev in Thread] Current Thread [Next in Thread]