Clean up another pre-ANSI-C-ism in regex code: get rid of pcolor typedef.
Tom Lane <tgl@sss.pgh.pa.us>
Clean up another pre-ANSI-C-ism in regex code: get rid of pcolor typedef. pcolor was used to represent function arguments that are nominally of type color, but when using a pre-ANSI C compiler would be passed as the promoted integer type. We really don't need that anymore.
Files
| Path | Change | +/− |
|---|---|---|
| src/backend/regex/regc_color.c | modified | +5 −5 |
| src/backend/regex/regc_nfa.c | modified | +4 −4 |
| src/backend/regex/regcomp.c | modified | +7 −7 |
| src/backend/regex/rege_dfa.c | modified | +3 −3 |
| src/backend/regex/regexec.c | modified | +2 −2 |
| src/include/regex/regguts.h | modified | +0 −1 |