diff options
| author | Juanma Barranquero | 2009-02-05 08:46:51 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2009-02-05 08:46:51 +0000 |
| commit | 4d8e170ee6c81476d84db708b24dbeb72e4732fe (patch) | |
| tree | 184896ffd3207791bfb723819e97a39a1091399d /src | |
| parent | 50dcb7845f465e374a1e3778da45121e156d49c1 (diff) | |
| download | emacs-4d8e170ee6c81476d84db708b24dbeb72e4732fe.tar.gz emacs-4d8e170ee6c81476d84db708b24dbeb72e4732fe.zip | |
* character.c (syms_of_character) <script-representative-chars>:
Fix typo in docstring.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/character.c | 4 |
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 @@ | |||
| 1 | 2009-02-05 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * character.c (syms_of_character) <script-representative-chars>: | ||
| 4 | Fix typo in docstring. | ||
| 5 | |||
| 1 | 2009-02-04 Adrian Robert <Adrian.B.Robert@gmail.com> | 6 | 2009-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. |
| 1168 | Each element is a cons (SCRIPT . CHARS). | 1168 | Each element is a cons (SCRIPT . CHARS). |
| 1169 | SCRIPT is a symbol representing a script or a subgroupd of a script. | 1169 | SCRIPT is a symbol representing a script or a subgroup of a script. |
| 1170 | CHARS is a list or a vector of characters. | 1170 | CHARS is a list or a vector of characters. |
| 1171 | If it is a list, all characters in the list are necessary for supporting SCRIPT. | 1171 | If it is a list, all characters in the list are necessary for supporting SCRIPT. |
| 1172 | If it is a vector, one of the characters in the vector is necessary. | 1172 | If it is a vector, one of the characters in the vector is necessary. |