# HG changeset patch # User Juanma Barranquero # Date 1228960186 0 # Node ID b814c7996a935b34c705fbe10faacc28ce18bf47 # Parent 271a9c928c418e5b1d463ea7ba3d9fb8740b04e7 * syntax.c (Fmodify_syntax_entry): Doc fix. diff -r 271a9c928c41 -r b814c7996a93 src/ChangeLog --- a/src/ChangeLog Wed Dec 10 23:36:03 2008 +0000 +++ b/src/ChangeLog Thu Dec 11 01:49:46 2008 +0000 @@ -1,3 +1,7 @@ +2008-12-11 Juanma Barranquero + + * syntax.c (Fmodify_syntax_entry): Doc fix. + 2008-12-10 Juanma Barranquero * font.c (Ffont_spec): Move usage to end of docstring. diff -r 271a9c928c41 -r b814c7996a93 src/syntax.c --- a/src/syntax.c Wed Dec 10 23:36:03 2008 +0000 +++ b/src/syntax.c Thu Dec 11 01:49:46 2008 +0000 @@ -968,7 +968,7 @@ The syntax is changed only for table SYNTAX-TABLE, which defaults to the current buffer's syntax table. CHAR may be a cons (MIN . MAX), in which case, syntaxes of all characters -in the range MIN and MAX are changed. +in the range MIN to MAX are changed. The first character of NEWENTRY should be one of the following: Space or - whitespace syntax. w word constituent. _ symbol constituent. . punctuation. @@ -1001,7 +1001,7 @@ p means CHAR is a prefix character for `backward-prefix-chars'; such characters are treated as whitespace when they occur between expressions. -usage: (modify-syntax-entry CHAR NEWENTRY &optional SYNTAX-TABLE) */) +usage: (modify-syntax-entry CHAR NEWENTRY &optional SYNTAX-TABLE) */) (c, newentry, syntax_table) Lisp_Object c, newentry, syntax_table; {