| 7084 |
|
|
| 7085 |
/* Check validity of \R options. */ |
/* Check validity of \R options. */ |
| 7086 |
|
|
| 7087 |
switch (options & (PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE)) |
if ((options & (PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE)) == |
| 7088 |
|
(PCRE_BSR_ANYCRLF|PCRE_BSR_UNICODE)) |
| 7089 |
{ |
{ |
| 7090 |
case 0: |
errorcode = ERR56; |
| 7091 |
case PCRE_BSR_ANYCRLF: |
goto PCRE_EARLY_ERROR_RETURN; |
|
case PCRE_BSR_UNICODE: |
|
|
break; |
|
|
default: errorcode = ERR56; goto PCRE_EARLY_ERROR_RETURN; |
|
| 7092 |
} |
} |
| 7093 |
|
|
| 7094 |
/* Handle different types of newline. The three bits give seven cases. The |
/* Handle different types of newline. The three bits give seven cases. The |