projects
/
chise
/
xemacs-chise.git.1
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0230c36
)
(COMPOSE_ADD_CHAR): Use `CHAR_TABLEP' instead of `CHAR_ID_TABLE_P'.
author
tomo
<tomo>
Mon, 3 Sep 2001 16:02:09 +0000
(16:02 +0000)
committer
tomo
<tomo>
Mon, 3 Sep 2001 16:02:09 +0000
(16:02 +0000)
src/text-coding.c
patch
|
blob
|
history
diff --git
a/src/text-coding.c
b/src/text-coding.c
index
509cbb9
..
35e8523
100644
(file)
--- a/
src/text-coding.c
+++ b/
src/text-coding.c
@@
-2226,7
+2226,7
@@
COMPOSE_ADD_CHAR(struct decoding_stream *str,
{
if (CODING_SYSTEM_DISABLE_COMPOSITION (str->codesys))
DECODE_ADD_UCS_CHAR (character, dst);
- else if (!CHAR_ID_TABLE_P (str->combining_table))
+ else if (!CHAR_TABLEP (str->combining_table))
{
Lisp_Object ret
= get_char_id_table (XCHAR_TABLE(Vcharacter_composition_table),
@@
-2266,7
+2266,7
@@
COMPOSE_ADD_CHAR(struct decoding_stream *str,
str->combining_table = ret;
}
}
- else if (CHAR_ID_TABLE_P (ret))
+ else if (CHAR_TABLEP (ret))
{
str->combined_chars[str->combined_char_count++] = character;
str->combining_table = ret;