diff options
| author | Kenichi Handa | 2002-08-15 02:30:08 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2002-08-15 02:30:08 +0000 |
| commit | ed09a18b8446614c8bc5c9918f208c9551a9fe96 (patch) | |
| tree | 8776b1bd5d32668b5739b28096a528dcec72a16f /src | |
| parent | 73ce348e6886decf0e29159b236aaeb6fd14602b (diff) | |
| download | emacs-ed09a18b8446614c8bc5c9918f208c9551a9fe96.tar.gz emacs-ed09a18b8446614c8bc5c9918f208c9551a9fe96.zip | |
*** empty log message ***
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 25 | ||||
| -rw-r--r-- | src/chartab.c | 2 |
2 files changed, 26 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 3cade674624..8e97ee3bd31 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,28 @@ | |||
| 1 | 2002-08-15 Kenichi Handa <handa@etl.go.jp> | ||
| 2 | |||
| 3 | * fontset.c (fontset_add): Make the type `int'. | ||
| 4 | (fontset_id_valid_p): Define it if FONTSET_DEBUG is defined. | ||
| 5 | |||
| 6 | * character.c (unibyte_char_to_multibyte): Refer to | ||
| 7 | charset_unibyte, not charset_primary. | ||
| 8 | (multibyte_char_to_unibyte): Likewise. | ||
| 9 | (Funibyte_char_to_multibyte): Likewise. | ||
| 10 | |||
| 11 | * charset.h: (charset_unibyte): Extern it instead of | ||
| 12 | charset_primary. | ||
| 13 | |||
| 14 | * charset.c (charset_unibyte): Renamed from charset_primary. | ||
| 15 | (Funibyte_charset): Renamed from Fprimary_charset. | ||
| 16 | (Fset_unibyte_charset): Renamed from Fset_primary_charset. | ||
| 17 | (syms_of_charset): Adjusted for the above changes. | ||
| 18 | |||
| 19 | * w32term.c (x_produce_glyphs): Use ASCII_CHAR_P, not | ||
| 20 | SINGLE_BYTE_CHAR_P. Fix the logic of handling non-ASCII char when | ||
| 21 | it->multibyte_p is zero. | ||
| 22 | |||
| 23 | * lisp.h (nonascii_insert_offset, Vnonascii_translation_table): | ||
| 24 | Extern deleted. | ||
| 25 | |||
| 1 | 2002-08-08 Kenichi Handa <handa@etl.go.jp> | 26 | 2002-08-08 Kenichi Handa <handa@etl.go.jp> |
| 2 | 27 | ||
| 3 | * coding.c (Fdefine_coding_system_internal): Fix category setting | 28 | * coding.c (Fdefine_coding_system_internal): Fix category setting |
diff --git a/src/chartab.c b/src/chartab.c index 3f9a9b8e00c..919331f7878 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) | |||
| 430 | { | 430 | { |
| 431 | int max_char = min_char + chartab_chars[depth] - 1; | 431 | int max_char = min_char + chartab_chars[depth] - 1; |
| 432 | 432 | ||
| 433 | if (depth == 3 || from <= min_char && to >= max_char) | 433 | if (depth == 3 || (from <= min_char && to >= max_char)) |
| 434 | *table = val; | 434 | *table = val; |
| 435 | else | 435 | else |
| 436 | { | 436 | { |