diff options
| author | Kenichi Handa | 2005-04-20 07:50:59 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2005-04-20 07:50:59 +0000 |
| commit | 2b048bf56106f9818da25051f7608c57cb884396 (patch) | |
| tree | 08104831c0c9c7b7ae948e459edc42c83da0ccd2 /src/ChangeLog | |
| parent | 256d566c94e35486a941b170ddc97deda4edc545 (diff) | |
| download | emacs-2b048bf56106f9818da25051f7608c57cb884396.tar.gz emacs-2b048bf56106f9818da25051f7608c57cb884396.zip | |
(Fset_char_table_range): Don't set slots used as default
values for ascii, eight-bit-control, eight-bit-graphic. Don't
call Faref with charset-id.
(Fset_char_table_default): Document how to treat normal character
argument. Handle special slots used as default values of ascii,
eight-bit-control, eight-bit-control. Make a sub chartable if
necessary.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 5fde4ff5286..8b01a1a6bb7 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,28 @@ | |||
| 1 | 2005-04-20 Kenichi Handa <handa@m17n.org> | 1 | 2005-04-20 Kenichi Handa <handa@m17n.org> |
| 2 | 2 | ||
| 3 | * lisp.h (CHAR_TABLE_DEFAULT_SLOT_ASCII): New macro. | ||
| 4 | (CHAR_TABLE_DEFAULT_SLOT_8_BIT_CONTROL): New macro. | ||
| 5 | (CHAR_TABLE_DEFAULT_SLOT_8_BIT_GRAPHIC): New macro. | ||
| 6 | |||
| 7 | * alloc.c (make_sub_char_table): Argument changed to initial | ||
| 8 | value of the slots. | ||
| 9 | |||
| 10 | * data.c (Faref): Handle special slots used as default values of | ||
| 11 | ascii, eight-bit-control, eight-bit-control. Don't ignore a | ||
| 12 | default value set for a group of characters. | ||
| 13 | (Faset): Signal an error if IDXVAL is not a valid character code. | ||
| 14 | Make a sub-chartable with correct initial value. | ||
| 15 | |||
| 16 | * fns.c (Fset_char_table_range): Don't set slots used as default | ||
| 17 | values for ascii, eight-bit-control, eight-bit-graphic. Don't | ||
| 18 | call Faref with charset-id. | ||
| 19 | (Fset_char_table_default): Document how to treat normal character | ||
| 20 | argument. Handle special slots used as default values of ascii, | ||
| 21 | eight-bit-control, eight-bit-control. Make a sub chartable if | ||
| 22 | necessary. | ||
| 23 | |||
| 24 | 2005-04-20 Kenichi Handa <handa@m17n.org> | ||
| 25 | |||
| 3 | * search.c (boyer_moore): Fix previous change. | 26 | * search.c (boyer_moore): Fix previous change. |
| 4 | 27 | ||
| 5 | 2005-04-19 Kim F. Storm <storm@cua.dk> | 28 | 2005-04-19 Kim F. Storm <storm@cua.dk> |