diff options
| -rw-r--r-- | src/syntax.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/syntax.c b/src/syntax.c index 50a7c9c250d..e119e7f8d7f 100644 --- a/src/syntax.c +++ b/src/syntax.c | |||
| @@ -240,8 +240,9 @@ The first character of S should be one of the following:\n\ | |||
| 240 | ( open-parenthesis. ) close-parenthesis.\n\ | 240 | ( open-parenthesis. ) close-parenthesis.\n\ |
| 241 | \" string quote. \\ escape.\n\ | 241 | \" string quote. \\ escape.\n\ |
| 242 | $ paired delimiter. ' expression quote or prefix operator.\n\ | 242 | $ paired delimiter. ' expression quote or prefix operator.\n\ |
| 243 | < comment starter. > comment ender.\n\ | 243 | < comment starter. > comment ender.\n\ |
| 244 | / character-quote.\n\ | 244 | / character-quote.\n\ |
| 245 | \n\ | ||
| 245 | Only single-character comment start and end sequences are represented thus.\n\ | 246 | Only single-character comment start and end sequences are represented thus.\n\ |
| 246 | Two-character sequences are represented as described below.\n\ | 247 | Two-character sequences are represented as described below.\n\ |
| 247 | The second character of S is the matching parenthesis,\n\ | 248 | The second character of S is the matching parenthesis,\n\ |
| @@ -255,8 +256,8 @@ Defined flags are the characters 1, 2, 3, 4, b, and p.\n\ | |||
| 255 | \n\ | 256 | \n\ |
| 256 | There can be up to two orthogonal comment sequences. This is to support\n\ | 257 | There can be up to two orthogonal comment sequences. This is to support\n\ |
| 257 | language modes such as C++. By default, all comment sequences are of style\n\ | 258 | language modes such as C++. By default, all comment sequences are of style\n\ |
| 258 | a, but you can set the comment sequence style to b (on the second character of a\n\ | 259 | a, but you can set the comment sequence style to b (on the second character\n\ |
| 259 | comment-start, or the first character of a comment-end sequence) by using\n\ | 260 | of a comment-start, or the first character of a comment-end sequence) using\n\ |
| 260 | this flag:\n\ | 261 | this flag:\n\ |
| 261 | b means C is part of comment sequence b.\n\ | 262 | b means C is part of comment sequence b.\n\ |
| 262 | \n\ | 263 | \n\ |