aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero2008-10-23 08:55:34 +0000
committerJuanma Barranquero2008-10-23 08:55:34 +0000
commit472a4dc990b0cfc96691bd8dde0e983d1df7c204 (patch)
tree6bfa49de8693645011c4a9e6eb12422741b25970 /src
parentfd0dd4c36627a366a764a5fc87bb8d480863e26b (diff)
downloademacs-472a4dc990b0cfc96691bd8dde0e983d1df7c204.tar.gz
emacs-472a4dc990b0cfc96691bd8dde0e983d1df7c204.zip
* character.c (syms_of_character) <script-representative-chars>:
<unicode-category-table>: Doc fixes.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/character.c6
2 files changed, 8 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 19caf803042..3920f5821ab 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12008-10-23 Juanma Barranquero <lekktu@gmail.com>
2
3 * character.c (syms_of_character) <script-representative-chars>:
4 <unicode-category-table>: Doc fixes.
5
12008-10-23 Noah Friedman <friedman@splode.com> 62008-10-23 Noah Friedman <friedman@splode.com>
2 7
3 * coding.c (make_conversion_work_buffer): Check that 8 * coding.c (make_conversion_work_buffer): Check that
diff --git a/src/character.c b/src/character.c
index ed1913e471a..c237d8fa405 100644
--- a/src/character.c
+++ b/src/character.c
@@ -1107,15 +1107,15 @@ It has one extra slot whose value is a list of script symbols. */);
1107 doc: /* Alist of scripts vs the representative characters. 1107 doc: /* Alist of scripts vs the representative characters.
1108Each element is a cons (SCRIPT . CHARS), where SCRIPT is a script name symbol, 1108Each element is a cons (SCRIPT . CHARS), where SCRIPT is a script name symbol,
1109CHARS is a list or a vector of characters. 1109CHARS is a list or a vector of characters.
1110If it is a list, all characters in the list is necessary for supporting SCRIPT. 1110If it is a list, all characters in the list are necessary for supporting SCRIPT.
1111If it is a vector, one of the characters in the vector is necessary. 1111If it is a vector, one of the characters in the vector is necessary.
1112This variable is used to find a font for a specific script. */); 1112This variable is used to find a font for a specific script. */);
1113 Vscript_representative_chars = Qnil; 1113 Vscript_representative_chars = Qnil;
1114 1114
1115 DEFVAR_LISP ("unicode-category-table", &Vunicode_category_table, 1115 DEFVAR_LISP ("unicode-category-table", &Vunicode_category_table,
1116 doc: /* Char table of Unicode's "General Category". 1116 doc: /* Char table of Unicode's "General Category".
1117All Unicode characters has one of the following values (symbol): 1117All Unicode characters have one of the following values (symbol):
1118 Lw, Ll, Lt, Lm, Lo, Mn, Mc, Me, Nd, Nl, No, Pc, Pd, Ps, Pe, Pi, Pf, Po, 1118 Lu, Ll, Lt, Lm, Lo, Mn, Mc, Me, Nd, Nl, No, Pc, Pd, Ps, Pe, Pi, Pf, Po,
1119 Sm, Sc, Sk, So, Zs, Zl, Zp, Cc, Cf, Cs, Co, Cn 1119 Sm, Sc, Sk, So, Zs, Zl, Zp, Cc, Cf, Cs, Co, Cn
1120See The Unicode Standard for the meaning of those values. */); 1120See The Unicode Standard for the meaning of those values. */);
1121 /* The correct char-table is setup in characters.el. */ 1121 /* The correct char-table is setup in characters.el. */