1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-20 19:42:53 -08:00

* character.c (syms_of_character) <script-representative-chars>:

Fix typo in docstring.
This commit is contained in:
Juanma Barranquero 2009-02-05 08:46:51 +00:00
parent 50dcb7845f
commit 4d8e170ee6
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2009-02-05 Juanma Barranquero <lekktu@gmail.com>
* character.c (syms_of_character) <script-representative-chars>:
Fix typo in docstring.
2009-02-04 Adrian Robert <Adrian.B.Robert@gmail.com>
* nsmenu.m (pop_down_menu): New function.

View file

@ -1047,7 +1047,7 @@ character is not ASCII nor 8-bit character, an error is signalled. */)
if (NILP (position))
{
p = PT_ADDR;
}
}
else
{
CHECK_NUMBER_COERCE_MARKER (position);
@ -1166,7 +1166,7 @@ It has one extra slot whose value is a list of script symbols. */);
DEFVAR_LISP ("script-representative-chars", &Vscript_representative_chars,
doc: /* Alist of scripts vs the representative characters.
Each element is a cons (SCRIPT . CHARS).
SCRIPT is a symbol representing a script or a subgroupd of a script.
SCRIPT is a symbol representing a script or a subgroup of a script.
CHARS is a list or a vector of characters.
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.