aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuanma Barranquero2009-02-05 08:46:51 +0000
committerJuanma Barranquero2009-02-05 08:46:51 +0000
commit4d8e170ee6c81476d84db708b24dbeb72e4732fe (patch)
tree184896ffd3207791bfb723819e97a39a1091399d
parent50dcb7845f465e374a1e3778da45121e156d49c1 (diff)
downloademacs-4d8e170ee6c81476d84db708b24dbeb72e4732fe.tar.gz
emacs-4d8e170ee6c81476d84db708b24dbeb72e4732fe.zip
* character.c (syms_of_character) <script-representative-chars>:
Fix typo in docstring.
-rw-r--r--src/ChangeLog5
-rw-r--r--src/character.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 7952b434b4f..e16edecfdaf 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12009-02-05 Juanma Barranquero <lekktu@gmail.com>
2
3 * character.c (syms_of_character) <script-representative-chars>:
4 Fix typo in docstring.
5
12009-02-04 Adrian Robert <Adrian.B.Robert@gmail.com> 62009-02-04 Adrian Robert <Adrian.B.Robert@gmail.com>
2 7
3 * nsmenu.m (pop_down_menu): New function. 8 * nsmenu.m (pop_down_menu): New function.
diff --git a/src/character.c b/src/character.c
index 9d61d60ca7f..50ca6521262 100644
--- a/src/character.c
+++ b/src/character.c
@@ -1047,7 +1047,7 @@ character is not ASCII nor 8-bit character, an error is signalled. */)
1047 if (NILP (position)) 1047 if (NILP (position))
1048 { 1048 {
1049 p = PT_ADDR; 1049 p = PT_ADDR;
1050 } 1050 }
1051 else 1051 else
1052 { 1052 {
1053 CHECK_NUMBER_COERCE_MARKER (position); 1053 CHECK_NUMBER_COERCE_MARKER (position);
@@ -1166,7 +1166,7 @@ It has one extra slot whose value is a list of script symbols. */);
1166 DEFVAR_LISP ("script-representative-chars", &Vscript_representative_chars, 1166 DEFVAR_LISP ("script-representative-chars", &Vscript_representative_chars,
1167 doc: /* Alist of scripts vs the representative characters. 1167 doc: /* Alist of scripts vs the representative characters.
1168Each element is a cons (SCRIPT . CHARS). 1168Each element is a cons (SCRIPT . CHARS).
1169SCRIPT is a symbol representing a script or a subgroupd of a script. 1169SCRIPT is a symbol representing a script or a subgroup of a script.
1170CHARS is a list or a vector of characters. 1170CHARS is a list or a vector of characters.
1171If it is a list, all characters in the list are necessary for supporting SCRIPT. 1171If it is a list, all characters in the list are necessary for supporting SCRIPT.
1172If it is a vector, one of the characters in the vector is necessary. 1172If it is a vector, one of the characters in the vector is necessary.