diff options
author | Richard M. Stallman <rms@gnu.org> | 1993-12-24 23:12:07 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1993-12-24 23:12:07 +0000 |
commit | 84c6b883b6a6231390baae503f620b6c27f1c5db (patch) | |
tree | f503acb63b338ecc00a8a4ca547e963f703c4568 /src/syntax.c | |
parent | 76ae6de8a461662ae6d6e6740a6f82c79f12915e (diff) | |
download | emacs-84c6b883b6a6231390baae503f620b6c27f1c5db.tar.gz |
(Fmodify_syntax_entry): Doc fix.
Diffstat (limited to 'src/syntax.c')
-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\ ( open-parenthesis. ) close-parenthesis.\n\ \" string quote. \\ escape.\n\ $ paired delimiter. ' expression quote or prefix operator.\n\ - < comment starter. > comment ender.\n\ + < comment starter. > comment ender.\n\ / character-quote.\n\ +\n\ Only single-character comment start and end sequences are represented thus.\n\ Two-character sequences are represented as described below.\n\ 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\ \n\ There can be up to two orthogonal comment sequences. This is to support\n\ language modes such as C++. By default, all comment sequences are of style\n\ -a, but you can set the comment sequence style to b (on the second character of a\n\ -comment-start, or the first character of a comment-end sequence) by using\n\ +a, but you can set the comment sequence style to b (on the second character\n\ +of a comment-start, or the first character of a comment-end sequence) using\n\ this flag:\n\ b means C is part of comment sequence b.\n\ \n\ |