tmp/tmpd7qrauwr/{from.md → to.md}
RENAMED
|
@@ -24,21 +24,21 @@ The type `error_type` is an *implementation-defined* enumerated type
|
|
| 24 |
conditions described in [[re.err]]:
|
| 25 |
|
| 26 |
**Table: `error_type` values in the C locale** <a id="re.err">[re.err]</a>
|
| 27 |
|
| 28 |
| Value | Error condition |
|
| 29 |
-
| -------------------- | ------------------------------------------------------------------------------------------------------------------
|
| 30 |
-
| `error_collate` | The expression
|
| 31 |
-
| % `error_ctype` | The expression
|
| 32 |
-
| % `error_escape` | The expression
|
| 33 |
-
| % `error_backref` | The expression
|
| 34 |
-
| % `error_brack` | The expression
|
| 35 |
-
| % `error_paren` | The expression
|
| 36 |
-
| % `error_brace` | The expression
|
| 37 |
-
| % `error_badbrace` | The expression
|
| 38 |
-
| % `error_range` | The expression
|
| 39 |
-
| % `error_space` | There
|
| 40 |
-
| % `error_badrepeat` | One of \verb|*?+{|
|
| 41 |
-
| % `error_complexity` | The complexity of an attempted match against a regular expression
|
| 42 |
-
| % `error_stack` | There
|
| 43 |
|
| 44 |
|
|
|
|
| 24 |
conditions described in [[re.err]]:
|
| 25 |
|
| 26 |
**Table: `error_type` values in the C locale** <a id="re.err">[re.err]</a>
|
| 27 |
|
| 28 |
| Value | Error condition |
|
| 29 |
+
| -------------------- | ------------------------------------------------------------------------------------------------------------------ |
|
| 30 |
+
| `error_collate` | The expression contains an invalid collating element name. |
|
| 31 |
+
| % `error_ctype` | The expression contains an invalid character class name. |
|
| 32 |
+
| % `error_escape` | The expression contains an invalid escaped character, or a trailing escape. |
|
| 33 |
+
| % `error_backref` | The expression contains an invalid back reference. |
|
| 34 |
+
| % `error_brack` | The expression contains mismatched \verb|[| and \verb|]|. |
|
| 35 |
+
| % `error_paren` | The expression contains mismatched \verb|(| and \verb|)|. |
|
| 36 |
+
| % `error_brace` | The expression contains mismatched \verb|{| and \verb|}| |
|
| 37 |
+
| % `error_badbrace` | The expression contains an invalid range in a \verb|{}| expression. |
|
| 38 |
+
| % `error_range` | The expression contains an invalid character range, such as \verb|[b-a]| in most encodings. |
|
| 39 |
+
| % `error_space` | There is insufficient memory to convert the expression into a finite state machine. |
|
| 40 |
+
| % `error_badrepeat` | One of \verb|*?+{| is not preceded by a valid regular expression. |
|
| 41 |
+
| % `error_complexity` | The complexity of an attempted match against a regular expression exceeds a pre-set level. |
|
| 42 |
+
| % `error_stack` | There is insufficient memory to determine whether the regular expression matches the specified character sequence. |
|
| 43 |
|
| 44 |
|