From: Paul Eggert Date: Tue, 11 Apr 2006 05:13:09 +0000 (+0000) Subject: Fix space-tab problem. From Jim Meyering. X-Git-Tag: cvs-readonly~2457 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=78ae82208df07ff226ae6649939c36b6f584e283;p=gnulib.git Fix space-tab problem. From Jim Meyering. --- diff --git a/lib/regcomp.c b/lib/regcomp.c index 0d6d160bf..84512d00c 100644 --- a/lib/regcomp.c +++ b/lib/regcomp.c @@ -3529,13 +3529,13 @@ build_charclass (RE_TRANSLATE_TYPE trans, bitset_t sbcset, if (BE (trans != NULL, 0)) \ { \ for (i = 0; i < SBC_MAX; ++i) \ - if (ctype_func (i)) \ + if (ctype_func (i)) \ bitset_set (sbcset, trans[i]); \ } \ else \ { \ for (i = 0; i < SBC_MAX; ++i) \ - if (ctype_func (i)) \ + if (ctype_func (i)) \ bitset_set (sbcset, i); \ } \ } while (0)