diff options
Diffstat (limited to 'src/syntax.c')
| -rw-r--r-- | src/syntax.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/syntax.c b/src/syntax.c index 8dea32b9117..ed592dfe99b 100644 --- a/src/syntax.c +++ b/src/syntax.c | |||
| @@ -968,7 +968,7 @@ DEFUN ("modify-syntax-entry", Fmodify_syntax_entry, Smodify_syntax_entry, 2, 3, | |||
| 968 | The syntax is changed only for table SYNTAX-TABLE, which defaults to | 968 | The syntax is changed only for table SYNTAX-TABLE, which defaults to |
| 969 | the current buffer's syntax table. | 969 | the current buffer's syntax table. |
| 970 | CHAR may be a cons (MIN . MAX), in which case, syntaxes of all characters | 970 | CHAR may be a cons (MIN . MAX), in which case, syntaxes of all characters |
| 971 | in the range MIN and MAX are changed. | 971 | in the range MIN to MAX are changed. |
| 972 | The first character of NEWENTRY should be one of the following: | 972 | The first character of NEWENTRY should be one of the following: |
| 973 | Space or - whitespace syntax. w word constituent. | 973 | Space or - whitespace syntax. w word constituent. |
| 974 | _ symbol constituent. . punctuation. | 974 | _ symbol constituent. . punctuation. |
| @@ -1001,7 +1001,7 @@ this flag: | |||
| 1001 | p means CHAR is a prefix character for `backward-prefix-chars'; | 1001 | p means CHAR is a prefix character for `backward-prefix-chars'; |
| 1002 | such characters are treated as whitespace when they occur | 1002 | such characters are treated as whitespace when they occur |
| 1003 | between expressions. | 1003 | between expressions. |
| 1004 | usage: (modify-syntax-entry CHAR NEWENTRY &optional SYNTAX-TABLE) */) | 1004 | usage: (modify-syntax-entry CHAR NEWENTRY &optional SYNTAX-TABLE) */) |
| 1005 | (c, newentry, syntax_table) | 1005 | (c, newentry, syntax_table) |
| 1006 | Lisp_Object c, newentry, syntax_table; | 1006 | Lisp_Object c, newentry, syntax_table; |
| 1007 | { | 1007 | { |