summaryrefslogtreecommitdiff
path: root/src/pcresearch.c
diff options
context:
space:
mode:
authorJim Meyering <meyering@fb.com>2013-12-14 10:09:46 -0800
committerJim Meyering <meyering@fb.com>2013-12-18 10:38:36 -0800
commit354209b0cfc5402aa1ebd8835135e04e36a3a6f4 (patch)
tree3f3220583fbdbaff3a5c141a034f4b752ef4b0a1 /src/pcresearch.c
parent9316d536321af0c44f75a1e62d910f6444f02318 (diff)
downloadgrep-354209b0cfc5402aa1ebd8835135e04e36a3a6f4.tar.gz
maint: indent cpp directives to reflect nesting
* src/pcresearch.c: Insert spaces after a few "#", to indent cpp directives to reflect their nesting.
Diffstat (limited to 'src/pcresearch.c')
-rw-r--r--src/pcresearch.c21
1 files changed, 11 insertions, 10 deletions
diff --git a/src/pcresearch.c b/src/pcresearch.c
index 9ba12274..67dee45e 100644
--- a/src/pcresearch.c
+++ b/src/pcresearch.c
@@ -36,11 +36,11 @@ static pcre *cre;
/* Additional information about the pattern. */
static pcre_extra *extra;
-#ifdef PCRE_STUDY_JIT_COMPILE
+# ifdef PCRE_STUDY_JIT_COMPILE
static pcre_jit_stack *jit_stack;
-#else
-#define PCRE_STUDY_JIT_COMPILE 0
-#endif
+# else
+# define PCRE_STUDY_JIT_COMPILE 0
+# endif
#endif
void
@@ -60,10 +60,10 @@ Pcompile (char const *pattern, size_t size)
char const *p;
char const *pnul;
-#if defined HAVE_LANGINFO_CODESET
+# if defined HAVE_LANGINFO_CODESET
if (STREQ (nl_langinfo (CODESET), "UTF-8"))
flags |= PCRE_UTF8;
-#endif
+# endif
/* FIXME: Remove these restrictions. */
if (memchr (pattern, '\n', size))
@@ -111,7 +111,7 @@ Pcompile (char const *pattern, size_t size)
if (ep)
error (EXIT_TROUBLE, 0, "%s", ep);
-#if PCRE_STUDY_JIT_COMPILE
+# if PCRE_STUDY_JIT_COMPILE
if (pcre_fullinfo (cre, extra, PCRE_INFO_JIT, &e))
error (EXIT_TROUBLE, 0, _("internal error (should never happen)"));
@@ -122,12 +122,13 @@ Pcompile (char const *pattern, size_t size)
than the interpreter, this should be enough in practice. */
jit_stack = pcre_jit_stack_alloc (32 * 1024, 512 * 1024);
if (!jit_stack)
- error (EXIT_TROUBLE, 0, _("cannot allocate memory for the JIT stack"));
+ error (EXIT_TROUBLE, 0,
+ _("failed to allocate memory for the PCRE JIT stack"));
pcre_assign_jit_stack (extra, NULL, jit_stack);
}
free (re);
-#endif
-#endif
+# endif
+#endif /* HAVE_LIBPCRE */
}
size_t