diff options
| author | Jim Blandy | 1992-05-01 06:20:46 +0000 |
|---|---|---|
| committer | Jim Blandy | 1992-05-01 06:20:46 +0000 |
| commit | 32676c085ce177af1e1e8ab61360c68772450af0 (patch) | |
| tree | 6c8e9d6bc310b894409ae82fe957d1cd518c8e4d /src/syntax.c | |
| parent | d9a0f717d7057092d81b6cfc9acf06e3afcd13bd (diff) | |
| download | emacs-32676c085ce177af1e1e8ab61360c68772450af0.tar.gz emacs-32676c085ce177af1e1e8ab61360c68772450af0.zip | |
*** empty log message ***
Diffstat (limited to 'src/syntax.c')
| -rw-r--r-- | src/syntax.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/syntax.c b/src/syntax.c index 4f203caf8f8..483526ebc35 100644 --- a/src/syntax.c +++ b/src/syntax.c | |||
| @@ -158,12 +158,13 @@ DEFUN ("modify-syntax-entry", foo, bar, 0, 0, 0, | |||
| 158 | The syntax is changed only for table TABLE, which defaults to\n\ | 158 | The syntax is changed only for table TABLE, which defaults to\n\ |
| 159 | the current buffer's syntax table.\n\ | 159 | the current buffer's syntax table.\n\ |
| 160 | The first character of S should be one of the following:\n\ | 160 | The first character of S should be one of the following:\n\ |
| 161 | Space whitespace syntax. w word constituent.\n\ | 161 | Space or - whitespace syntax. w word constituent.\n\ |
| 162 | _ symbol constituent. . punctuation.\n\ | 162 | _ symbol constituent. . punctuation.\n\ |
| 163 | ( open-parenthesis. ) close-parenthesis.\n\ | 163 | ( open-parenthesis. ) close-parenthesis.\n\ |
| 164 | \" string quote. \\ character-quote.\n\ | 164 | \" string quote. \\ escape.\n\ |
| 165 | $ paired delimiter. ' expression quote or prefix operator.\n\ | 165 | $ paired delimiter. ' expression quote or prefix operator.\n\ |
| 166 | < comment starter. > comment ender.\n\ | 166 | < comment starter. > comment ender.\n\ |
| 167 | / character-quote.\n\ | ||
| 167 | Only single-character comment start and end sequences are represented thus.\n\ | 168 | Only single-character comment start and end sequences are represented thus.\n\ |
| 168 | Two-character sequences are represented as described below.\n\ | 169 | Two-character sequences are represented as described below.\n\ |
| 169 | The second character of S is the matching parenthesis,\n\ | 170 | The second character of S is the matching parenthesis,\n\ |