Re: [gentoo-portage-dev] [PATCH] use_reduce: reserve missing_white_space_check for invalid tokens (bug 611838)

2017-03-08 Thread Zac Medico
On Wed, Mar 8, 2017 at 10:50 AM, Brian Dolbec wrote: > On Mon, 6 Mar 2017 12:51:08 -0800 > Zac Medico wrote: > >> Since it's possible for a URI to contain parenthesis, only call >> missing_white_space_check for tokens that fail to validate with >>

Re: [gentoo-portage-dev] [PATCH] use_reduce: reserve missing_white_space_check for invalid tokens (bug 611838)

2017-03-08 Thread Brian Dolbec
On Mon, 6 Mar 2017 12:51:08 -0800 Zac Medico wrote: > Since it's possible for a URI to contain parenthesis, only call > missing_white_space_check for tokens that fail to validate with > token_class. The missing_white_space_check function only serves > to clarify exception

[gentoo-portage-dev] [PATCH] use_reduce: reserve missing_white_space_check for invalid tokens (bug 611838)

2017-03-06 Thread Zac Medico
Since it's possible for a URI to contain parenthesis, only call missing_white_space_check for tokens that fail to validate with token_class. The missing_white_space_check function only serves to clarify exception messages, so it must not be allowed to reject valid tokens. ---