Ralf Wildenhues <[EMAIL PROTECTED]> wrote:
> The pattern
>   *[!-_A-Za-z0-9,/]*
>
> should match anything containing a character not alphanumeric, nor
> comma, slash, underscore, minus.

!-_ is probably being interpreted as a range.  An easy workaround
would be to move "-" to the end of the pattern: *[!_A-Za-z0-9,/-]*


paul


_______________________________________________
Bug-libtool mailing list
Bug-libtool@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-libtool

Reply via email to