diff options
| author | Juanma Barranquero | 2008-12-11 01:49:46 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2008-12-11 01:49:46 +0000 |
| commit | fedc6ab5551a4f4a80c8c1add8095d0415e034e9 (patch) | |
| tree | 48f63bceb91bf08c951d41bb229e09d828869d8b /src/syntax.c | |
| parent | d50299d55d9d6d4540a1b7bf575ef54c3716f97f (diff) | |
| download | emacs-fedc6ab5551a4f4a80c8c1add8095d0415e034e9.tar.gz emacs-fedc6ab5551a4f4a80c8c1add8095d0415e034e9.zip | |
* syntax.c (Fmodify_syntax_entry): Doc fix.
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 | { |