From: Paul Eggert Date: Tue, 11 Apr 2006 05:13:09 +0000 (+0000) Subject: Fix space-tab problem. From Jim Meyering. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=78ae82208df07ff226ae6649939c36b6f584e283;p=pspp Fix space-tab problem. From Jim Meyering. --- diff --git a/lib/regcomp.c b/lib/regcomp.c index 0d6d160bf8..84512d00cf 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)