regcomp.c: Slight refactor of [[:blank:]]
authorKarl Williamson <public@khwilliamson.com>
Sat, 15 Dec 2012 18:32:48 +0000 (11:32 -0700)
committerKarl Williamson <public@khwilliamson.com>
Sat, 22 Dec 2012 18:11:29 +0000 (11:11 -0700)
commit1f3c8c016cc0dc7e1c5e0e865f2743ef5015ce16
tree15cd6bac23ab7c3f81e69507c39c3e5238cba73c
parent44c5540e7e15eb5e4fb078c2e289b5047f35d9da
regcomp.c: Slight refactor of [[:blank:]]

The C library function isblank() is not available on every platform.  A
Configure probe determines if it exists on the current platform.  If so,
compiling it can be done just like all the similar ones.  Only if
isblank() is not present does there need to be special handling.

This commit changes the cases of a switch statement so that if isblank()
is present, there is no special handling.
regcomp.c