aboutsummaryrefslogtreecommitdiff
path: root/src/include/regex/cclass.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2001-11-05 17:46:40 +0000
committerBruce Momjian <bruce@momjian.us>2001-11-05 17:46:40 +0000
commitea08e6cd5542cb269ecd3e735f1dfa3bb61fbc4f (patch)
treebf6b60c08be3ddf5a40e110e8276dc2d45b1431c /src/include/regex/cclass.h
parent34153b205265e2e831c1e3ee02be0fc88fa41710 (diff)
downloadpostgresql-ea08e6cd5542cb269ecd3e735f1dfa3bb61fbc4f.tar.gz
postgresql-ea08e6cd5542cb269ecd3e735f1dfa3bb61fbc4f.zip
New pgindent run with fixes suggested by Tom. Patch manually reviewed,
initdb/regression tests pass.
Diffstat (limited to 'src/include/regex/cclass.h')
-rw-r--r--src/include/regex/cclass.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/include/regex/cclass.h b/src/include/regex/cclass.h
index 700c712d8ca..8b13c125830 100644
--- a/src/include/regex/cclass.h
+++ b/src/include/regex/cclass.h
@@ -43,7 +43,7 @@ static struct cclass
char *name;
char *chars;
char *multis;
-} cclasses[] =
+} cclasses[] =
{
{
@@ -52,7 +52,7 @@ static struct cclass
},
{
"alpha", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz",
- ""
+ ""
},
{
"blank", " \t", ""
@@ -67,31 +67,31 @@ static struct cclass
{
"graph", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\
0123456789!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~",
- ""
+ ""
},
{
"lower", "abcdefghijklmnopqrstuvwxyz",
- ""
+ ""
},
{
"print", "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\
0123456789!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~ ",
- ""
+ ""
},
{
"punct", "!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~",
- ""
+ ""
},
{
"space", "\t\n\v\f\r ", ""
},
{
"upper", "ABCDEFGHIJKLMNOPQRSTUVWXYZ",
- ""
+ ""
},
{
"xdigit", "0123456789ABCDEFabcdef",
- ""
+ ""
},
{
NULL, NULL, ""