aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa <[email protected]>2002-08-15 02:30:08 +0000
committerKenichi Handa <[email protected]>2002-08-15 02:30:08 +0000
commited09a18b8446614c8bc5c9918f208c9551a9fe96 (patch)
tree8776b1bd5d32668b5739b28096a528dcec72a16f /src
parent73ce348e6886decf0e29159b236aaeb6fd14602b (diff)
*** empty log message ***
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog25
-rw-r--r--src/chartab.c2
2 files changed, 26 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 3cade67462..8e97ee3bd3 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,28 @@
+2002-08-15 Kenichi Handa <[email protected]>
+
+ * fontset.c (fontset_add): Make the type `int'.
+ (fontset_id_valid_p): Define it if FONTSET_DEBUG is defined.
+
+ * character.c (unibyte_char_to_multibyte): Refer to
+ charset_unibyte, not charset_primary.
+ (multibyte_char_to_unibyte): Likewise.
+ (Funibyte_char_to_multibyte): Likewise.
+
+ * charset.h: (charset_unibyte): Extern it instead of
+ charset_primary.
+
+ * charset.c (charset_unibyte): Renamed from charset_primary.
+ (Funibyte_charset): Renamed from Fprimary_charset.
+ (Fset_unibyte_charset): Renamed from Fset_primary_charset.
+ (syms_of_charset): Adjusted for the above changes.
+
+ * w32term.c (x_produce_glyphs): Use ASCII_CHAR_P, not
+ SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when
+ it->multibyte_p is zero.
+
+ * lisp.h (nonascii_insert_offset, Vnonascii_translation_table):
+ Extern deleted.
+
2002-08-08 Kenichi Handa <[email protected]>
* coding.c (Fdefine_coding_system_internal): Fix category setting
diff --git a/src/chartab.c b/src/chartab.c
index 3f9a9b8e00..919331f787 100644
--- a/src/chartab.c
+++ b/src/chartab.c
@@ -430,7 +430,7 @@ sub_char_table_set_range (table, depth, min_char, from, to, val)
{
int max_char = min_char + chartab_chars[depth] - 1;
- if (depth == 3 || from <= min_char && to >= max_char)
+ if (depth == 3 || (from <= min_char && to >= max_char))
*table = val;
else
{