diff options
| author | Kenichi Handa | 2008-09-01 02:44:56 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2008-09-01 02:44:56 +0000 |
| commit | c3bb7671dee2ecc0de64b740c7e70535ff65c971 (patch) | |
| tree | a666b69926c3289a0b0e9abe738275a3bc249e73 /src/character.c | |
| parent | fac97bb45828a6ac83e9e3b4f9cde80fffd00a9b (diff) | |
| download | emacs-c3bb7671dee2ecc0de64b740c7e70535ff65c971.tar.gz emacs-c3bb7671dee2ecc0de64b740c7e70535ff65c971.zip | |
(syms_of_character): Docstring of script-representative-chars fixed.
Diffstat (limited to 'src/character.c')
| -rw-r--r-- | src/character.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/character.c b/src/character.c index 062adeb57b3..7c0f38f96a5 100644 --- a/src/character.c +++ b/src/character.c | |||
| @@ -1104,7 +1104,12 @@ It has one extra slot whose value is a list of script symbols. */); | |||
| 1104 | Vchar_script_table = Fmake_char_table (Qchar_script_table, Qnil); | 1104 | Vchar_script_table = Fmake_char_table (Qchar_script_table, Qnil); |
| 1105 | 1105 | ||
| 1106 | DEFVAR_LISP ("script-representative-chars", &Vscript_representative_chars, | 1106 | DEFVAR_LISP ("script-representative-chars", &Vscript_representative_chars, |
| 1107 | doc: /* Alist of scripts vs the representative characters. */); | 1107 | doc: /* Alist of scripts vs the representative characters. |
| 1108 | Each element is a cons (SCRIPT . CHARS), where SCRIPT is a script name symbol, | ||
| 1109 | CHARS is a list or a vector of characters. | ||
| 1110 | If it is a list, all characters in the list is necessary for supporting SCRIPT. | ||
| 1111 | If it is a vector, one of the characters in the vector is necessary. | ||
| 1112 | This variable is used to find a font for a specific script. */); | ||
| 1108 | Vscript_representative_chars = Qnil; | 1113 | Vscript_representative_chars = Qnil; |
| 1109 | 1114 | ||
| 1110 | DEFVAR_LISP ("unicode-category-table", &Vunicode_category_table, | 1115 | DEFVAR_LISP ("unicode-category-table", &Vunicode_category_table, |