aboutsummaryrefslogtreecommitdiffstats
path: root/src/syntax.c
diff options
context:
space:
mode:
authorJuanma Barranquero2008-12-11 01:49:46 +0000
committerJuanma Barranquero2008-12-11 01:49:46 +0000
commitfedc6ab5551a4f4a80c8c1add8095d0415e034e9 (patch)
tree48f63bceb91bf08c951d41bb229e09d828869d8b /src/syntax.c
parentd50299d55d9d6d4540a1b7bf575ef54c3716f97f (diff)
downloademacs-fedc6ab5551a4f4a80c8c1add8095d0415e034e9.tar.gz
emacs-fedc6ab5551a4f4a80c8c1add8095d0415e034e9.zip
* syntax.c (Fmodify_syntax_entry): Doc fix.
Diffstat (limited to 'src/syntax.c')
-rw-r--r--src/syntax.c4
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,
968The syntax is changed only for table SYNTAX-TABLE, which defaults to 968The 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.
970CHAR may be a cons (MIN . MAX), in which case, syntaxes of all characters 970CHAR may be a cons (MIN . MAX), in which case, syntaxes of all characters
971in the range MIN and MAX are changed. 971in the range MIN to MAX are changed.
972The first character of NEWENTRY should be one of the following: 972The 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.
1004usage: (modify-syntax-entry CHAR NEWENTRY &optional SYNTAX-TABLE) */) 1004usage: (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{