From 927d61eeff78363ea3938c818d07e511ebaf75cf Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sun, 10 Jun 2012 15:20:04 -0400 Subject: Run pgindent on 9.2 source tree in preparation for first 9.3 commit-fest. --- src/backend/regex/regc_locale.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'src/backend/regex/regc_locale.c') diff --git a/src/backend/regex/regc_locale.c b/src/backend/regex/regc_locale.c index c0414a24912..da597053448 100644 --- a/src/backend/regex/regc_locale.c +++ b/src/backend/regex/regc_locale.c @@ -513,7 +513,7 @@ cclass(struct vars * v, /* context */ { size_t len; struct cvec *cv = NULL; - const char * const *namePtr; + const char *const * namePtr; int i, index; @@ -521,7 +521,7 @@ cclass(struct vars * v, /* context */ * The following arrays define the valid character class names. */ - static const char * const classNames[] = { + static const char *const classNames[] = { "alnum", "alpha", "ascii", "blank", "cntrl", "digit", "graph", "lower", "print", "punct", "space", "upper", "xdigit", NULL }; @@ -562,8 +562,8 @@ cclass(struct vars * v, /* context */ index = (int) CC_ALPHA; /* - * Now compute the character class contents. For classes that are - * based on the behavior of a or function, we use + * Now compute the character class contents. For classes that are based + * on the behavior of a or function, we use * pg_ctype_get_cache so that we can cache the results. Other classes * have definitions that are hard-wired here, and for those we just * construct a transient cvec on the fly. @@ -605,10 +605,11 @@ cclass(struct vars * v, /* context */ cv = pg_ctype_get_cache(pg_wc_ispunct); break; case CC_XDIGIT: + /* * It's not clear how to define this in non-western locales, and - * even less clear that there's any particular use in trying. - * So just hard-wire the meaning. + * even less clear that there's any particular use in trying. So + * just hard-wire the meaning. */ cv = getcvec(v, 0, 3); if (cv) -- cgit v1.2.3