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/cmds.c | |
| 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/cmds.c')
| -rw-r--r-- | src/cmds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmds.c b/src/cmds.c index 9cb287b0296..19073dccf4a 100644 --- a/src/cmds.c +++ b/src/cmds.c | |||
| @@ -503,7 +503,7 @@ internal_self_insert (c, noautofill) | |||
| 503 | && PT > BEGV | 503 | && PT > BEGV |
| 504 | && (!NILP (current_buffer->enable_multibyte_characters) | 504 | && (!NILP (current_buffer->enable_multibyte_characters) |
| 505 | ? SYNTAX (XFASTINT (Fprevious_char ())) == Sword | 505 | ? SYNTAX (XFASTINT (Fprevious_char ())) == Sword |
| 506 | : (SYNTAX (unibyte_char_to_multibyte (XFASTINT (Fprevious_char ()))) | 506 | : (SYNTAX (UNIBYTE_TO_CHAR (XFASTINT (Fprevious_char ()))) |
| 507 | == Sword))) | 507 | == Sword))) |
| 508 | { | 508 | { |
| 509 | int modiff = MODIFF; | 509 | int modiff = MODIFF; |