diff options
| author | Kenichi Handa | 2003-05-06 23:43:33 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2003-05-06 23:43:33 +0000 |
| commit | ed7219f84bf85c0fe0135a91c03ac0c065286289 (patch) | |
| tree | d85b7a62052f994e33e0308ec6bf175734dfb2cf /src | |
| parent | 2f76e15edacb544de71cab4b2c3ae14b90a4da90 (diff) | |
| download | emacs-ed7219f84bf85c0fe0135a91c03ac0c065286289.tar.gz emacs-ed7219f84bf85c0fe0135a91c03ac0c065286289.zip | |
*** empty log message ***
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 6 | ||||
| -rw-r--r-- | src/chartab.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index f41f8da3992..a7841cbc8cc 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2003-05-07 Kenichi Handa <handa@m17n.org> | ||
| 2 | |||
| 3 | * chartab.c (map_sub_char_table): New argument DEFAULT_VAL. | ||
| 4 | (map_char_table): Don't inherit the value from the parent on | ||
| 5 | initializing VAL. Adjusted for the above change. | ||
| 6 | |||
| 1 | 2003-05-06 Kenichi Handa <handa@m17n.org> | 7 | 2003-05-06 Kenichi Handa <handa@m17n.org> |
| 2 | 8 | ||
| 3 | * coding.c (Qsignature, Qendian): Delete these variables. | 9 | * coding.c (Qsignature, Qendian): Delete these variables. |
diff --git a/src/chartab.c b/src/chartab.c index 1aae0969e6c..95dd346b86a 100644 --- a/src/chartab.c +++ b/src/chartab.c | |||
| @@ -821,7 +821,7 @@ map_char_table (c_function, function, table, arg, depth, indices) | |||
| 821 | DEFUN ("map-char-table", Fmap_char_table, Smap_char_table, | 821 | DEFUN ("map-char-table", Fmap_char_table, Smap_char_table, |
| 822 | 2, 2, 0, | 822 | 2, 2, 0, |
| 823 | doc: /* | 823 | doc: /* |
| 824 | Call FUNCTION for each character in CHAR-TABLE. | 824 | Call FUNCTION for each character in CHAR-TABLE that has non-nil value. |
| 825 | FUNCTION is called with two arguments--a key and a value. | 825 | FUNCTION is called with two arguments--a key and a value. |
| 826 | The key is a character code or a cons of character codes specifying a | 826 | The key is a character code or a cons of character codes specifying a |
| 827 | range of characters that have the same value. */) | 827 | range of characters that have the same value. */) |