diff options
| author | Stefan Monnier | 2009-10-18 03:08:32 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2009-10-18 03:08:32 +0000 |
| commit | 4c0354d71bb71c17af97ec956379603ccbb42a18 (patch) | |
| tree | 8f3ebc4af4b125f170ea6c3461b945878cf3b07d /src/ChangeLog | |
| parent | e5f035d75ea1e81103dc58b50e3e8afa44fbc34e (diff) | |
| download | emacs-4c0354d71bb71c17af97ec956379603ccbb42a18.tar.gz emacs-4c0354d71bb71c17af97ec956379603ccbb42a18.zip | |
Remove leftover table unibyte_to_multibyte_table.
* character.c (unibyte_to_multibyte_table): Remove.
(Funibyte_char_to_multibyte): Use MAKE_CHAR_MULTIBYTE.
* charset.c (init_charset_once): Don't init unibyte_to_multibyte_table.
* character.h (UNIBYTE_TO_CHAR): New macro.
(MAKE_CHAR_MULTIBYTE): Use it.
(unibyte_to_multibyte_table, unibyte_char_to_multibyte): Remove.
* xdisp.c (get_next_display_element): USE ASCII_CHAR_P.
(message_dolog, set_message_1):
* search.c (Freplace_match):
* editfns.c (Fcompare_buffer_substrings):
* fns.c (Fcompare_strings): Use MAKE_CHAR_MULTIBYTE.
(concat):
* insdel.c (copy_text, count_size_as_multibyte):
Use ASCII_CHAR_P and BYTE8_TO_CHAR.
* term.c (produce_glyphs):
* syntax.c (skip_chars): Use BYTE8_TO_CHAR.
* regex.c (RE_CHAR_TO_MULTIBYTE):
* cmds.c (internal_self_insert):
* buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use UNIBYTE_TO_CHAR.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index aefe15108bb..06adb2d92c4 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,27 @@ | |||
| 1 | 2009-10-18 Stefan Monnier <monnier@iro.umontreal.ca> | 1 | 2009-10-18 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 2 | ||
| 3 | Remove leftover table unibyte_to_multibyte_table. | ||
| 4 | * character.c (unibyte_to_multibyte_table): Remove. | ||
| 5 | (Funibyte_char_to_multibyte): Use MAKE_CHAR_MULTIBYTE. | ||
| 6 | * charset.c (init_charset_once): Don't init unibyte_to_multibyte_table. | ||
| 7 | * character.h (UNIBYTE_TO_CHAR): New macro. | ||
| 8 | (MAKE_CHAR_MULTIBYTE): Use it. | ||
| 9 | (unibyte_to_multibyte_table, unibyte_char_to_multibyte): Remove. | ||
| 10 | * xdisp.c (get_next_display_element): USE ASCII_CHAR_P. | ||
| 11 | (message_dolog, set_message_1): | ||
| 12 | * search.c (Freplace_match): | ||
| 13 | * editfns.c (Fcompare_buffer_substrings): | ||
| 14 | * fns.c (Fcompare_strings): Use MAKE_CHAR_MULTIBYTE. | ||
| 15 | (concat): | ||
| 16 | * insdel.c (copy_text, count_size_as_multibyte): | ||
| 17 | Use ASCII_CHAR_P and BYTE8_TO_CHAR. | ||
| 18 | * term.c (produce_glyphs): | ||
| 19 | * syntax.c (skip_chars): Use BYTE8_TO_CHAR. | ||
| 20 | * regex.c (RE_CHAR_TO_MULTIBYTE): | ||
| 21 | * cmds.c (internal_self_insert): | ||
| 22 | * buffer.h (FETCH_CHAR_AS_MULTIBYTE): Use UNIBYTE_TO_CHAR. | ||
| 23 | |||
| 24 | |||
| 3 | * cmds.c (internal_self_insert): `c' is already in "multibyte" form. | 25 | * cmds.c (internal_self_insert): `c' is already in "multibyte" form. |
| 4 | 26 | ||
| 5 | 2009-10-17 Dan Nicolaescu <dann@ics.uci.edu> | 27 | 2009-10-17 Dan Nicolaescu <dann@ics.uci.edu> |