]> code.delx.au - gnu-emacs/commitdiff
* syntax.c (Fmodify_syntax_entry): Doc fix.
authorJuanma Barranquero <lekktu@gmail.com>
Thu, 11 Dec 2008 01:49:46 +0000 (01:49 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Thu, 11 Dec 2008 01:49:46 +0000 (01:49 +0000)
src/ChangeLog
src/syntax.c

index 1802b3ab23a3a9e69deecc4fec794a02ba402366..9243aa5664b7f01f1e2454ff320956036325bbd7 100644 (file)
@@ -1,3 +1,7 @@
+2008-12-11  Juanma Barranquero  <lekktu@gmail.com>
+
+       * syntax.c (Fmodify_syntax_entry): Doc fix.
+
 2008-12-10  Juanma Barranquero  <lekktu@gmail.com>
 
        * font.c (Ffont_spec): Move usage to end of docstring.
index 8dea32b91174bf2fd53a1cbb7daa28b7d3c9394b..ed592dfe99b8be54a1c6d4b803cca7940e3a44ef 100644 (file)
@@ -968,7 +968,7 @@ DEFUN ("modify-syntax-entry", Fmodify_syntax_entry, Smodify_syntax_entry, 2, 3,
 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 @@ this flag:
  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;
 {