[PATCH] localedata: bs_BA: fix yesexpr/noexpr [BZ #20974]

Rafal Luzynski digitalfreak@lingonborough.com
Thu Dec 29 12:52:00 GMT 2016


Mike, do you need more comments to push it?  More comments, anybody?
Thanks in advance,

Rafal


16.12.2016 19:09 Mike Frysinger <vapier@gentoo.org> wrote:
>
>
> On 15 Dec 2016 18:35, Mike Frysinger wrote:
> > Both regexes end with a "*." which means the previous match can be
> > omitted, and then the . allows them to match any input at all.
> >
> > This means tools like coreutils' `rm -i` will always delete things
> > when prompted because the yesexpr regex matches all inputs (even
> > the negative ones).
>
> meant to include this, but here's the diff made readable:
> -yesexpr "^[+1dDyY]*."
> -noexpr "^[-0nN]*."
> +yesexpr "^[+1dDyY]"
> +noexpr "^[-0nN]"
> -mike



More information about the Libc-alpha mailing list