Fix [\h] in EBCDIC environments.
This commit is contained in:
parent
f885874cd8
commit
b7550b8f54
|
@ -175,6 +175,8 @@ recognized as white space in EBCDIC.
|
||||||
an error (correctly) when used outside a class, but did not give an error
|
an error (correctly) when used outside a class, but did not give an error
|
||||||
within a class.
|
within a class.
|
||||||
|
|
||||||
|
46. \h within a class was incorrectly compiled in EBCDIC environments.
|
||||||
|
|
||||||
|
|
||||||
Version 10.10 06-March-2015
|
Version 10.10 06-March-2015
|
||||||
---------------------------
|
---------------------------
|
||||||
|
|
|
@ -435,7 +435,7 @@ PCRE for a long time. */
|
||||||
/* -------------- EBCDIC environments -------------- */
|
/* -------------- EBCDIC environments -------------- */
|
||||||
|
|
||||||
#else
|
#else
|
||||||
#define HSPACE_LIST CHAR_HT, CHAR_SPACE, CHAR_NBSP
|
#define HSPACE_LIST CHAR_HT, CHAR_SPACE, CHAR_NBSP, NOTACHAR
|
||||||
|
|
||||||
#define HSPACE_BYTE_CASES \
|
#define HSPACE_BYTE_CASES \
|
||||||
case CHAR_HT: \
|
case CHAR_HT: \
|
||||||
|
|
Loading…
Reference in New Issue