summaryrefslogtreecommitdiff
path: root/pcre_newline.c
diff options
context:
space:
mode:
Diffstat (limited to 'pcre_newline.c')
-rw-r--r--pcre_newline.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pcre_newline.c b/pcre_newline.c
index 5e257d8..1919f47 100644
--- a/pcre_newline.c
+++ b/pcre_newline.c
@@ -117,7 +117,7 @@ else switch(c)
case CHAR_NEL: *lenptr = utf? 2 : 1; return TRUE;
case 0x2028: /* LS */
case 0x2029: *lenptr = 3; return TRUE; /* PS */
-#else /* 16-bit (can't be EBCDIC) */
+#else /* COMPILE_PCRE16 || COMPILE_PCRE32 */
case CHAR_NEL:
case 0x2028: /* LS */
case 0x2029: *lenptr = 1; return TRUE; /* PS */
@@ -196,7 +196,7 @@ else switch(c)
case CHAR_NEL: *lenptr = utf? 2 : 1; return TRUE;
case 0x2028: /* LS */
case 0x2029: *lenptr = 3; return TRUE; /* PS */
-#else
+#else /* COMPILE_PCRE16 || COMPILE_PCRE32 */
case CHAR_NEL:
case 0x2028: /* LS */
case 0x2029: *lenptr = 1; return TRUE; /* PS */