aboutsummaryrefslogtreecommitdiffstats
path: root/src
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
parentd50299d55d9d6d4540a1b7bf575ef54c3716f97f (diff)
downloademacs-fedc6ab5551a4f4a80c8c1add8095d0415e034e9.tar.gz
emacs-fedc6ab5551a4f4a80c8c1add8095d0415e034e9.zip
* syntax.c (Fmodify_syntax_entry): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/syntax.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 1802b3ab23a..9243aa5664b 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12008-12-11 Juanma Barranquero <lekktu@gmail.com>
2
3 * syntax.c (Fmodify_syntax_entry): Doc fix.
4
12008-12-10 Juanma Barranquero <lekktu@gmail.com> 52008-12-10 Juanma Barranquero <lekktu@gmail.com>
2 6
3 * font.c (Ffont_spec): Move usage to end of docstring. 7 * font.c (Ffont_spec): Move usage to end of docstring.
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{