changeset 99079:ffe8b1e92732

* character.c (syms_of_character) <script-representative-chars>: <unicode-category-table>: Doc fixes.
author Juanma Barranquero <lekktu@gmail.com>
date Thu, 23 Oct 2008 08:55:34 +0000
parents 59b3b906b0e6
children ccaba4c89996
files src/ChangeLog src/character.c
diffstat 2 files changed, 8 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/ChangeLog	Thu Oct 23 08:05:36 2008 +0000
+++ b/src/ChangeLog	Thu Oct 23 08:55:34 2008 +0000
@@ -1,3 +1,8 @@
+2008-10-23  Juanma Barranquero  <lekktu@gmail.com>
+
+	* character.c (syms_of_character) <script-representative-chars>:
+	<unicode-category-table>: Doc fixes.
+
 2008-10-23  Noah Friedman  <friedman@splode.com>
 
 	* coding.c (make_conversion_work_buffer): Check that
--- a/src/character.c	Thu Oct 23 08:05:36 2008 +0000
+++ b/src/character.c	Thu Oct 23 08:55:34 2008 +0000
@@ -1107,15 +1107,15 @@
 	       doc: /* Alist of scripts vs the representative characters.
 Each element is a cons (SCRIPT . CHARS), where SCRIPT is a script name symbol,
 CHARS is a list or a vector of characters.
-If it is a list, all characters in the list is necessary for supporting SCRIPT.
+If it is a list, all characters in the list are necessary for supporting SCRIPT.
 If it is a vector, one of the characters in the vector is necessary.
 This variable is used to find a font for a specific script.  */);
   Vscript_representative_chars = Qnil;
 
   DEFVAR_LISP ("unicode-category-table", &Vunicode_category_table,
 	       doc: /* Char table of Unicode's "General Category".
-All Unicode characters has one of the following values (symbol):
-  Lw, Ll, Lt, Lm, Lo, Mn, Mc, Me, Nd, Nl, No, Pc, Pd, Ps, Pe, Pi, Pf, Po,
+All Unicode characters have one of the following values (symbol):
+  Lu, Ll, Lt, Lm, Lo, Mn, Mc, Me, Nd, Nl, No, Pc, Pd, Ps, Pe, Pi, Pf, Po,
   Sm, Sc, Sk, So, Zs, Zl, Zp, Cc, Cf, Cs, Co, Cn
 See The Unicode Standard for the meaning of those values.  */);
   /* The correct char-table is setup in characters.el.  */