diff options
| author | Kenichi Handa | 2006-03-20 04:14:24 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2006-03-20 04:14:24 +0000 |
| commit | 3b1ae89bcc47a69c190c8625be8ab5c3115bbd77 (patch) | |
| tree | cf71b7372d1eca9572d5c8f2dc512e3c09b41de2 /src | |
| parent | 292203c9ef2ab5c1bb349b83132c9a51d3dfb274 (diff) | |
| download | emacs-3b1ae89bcc47a69c190c8625be8ab5c3115bbd77.tar.gz emacs-3b1ae89bcc47a69c190c8625be8ab5c3115bbd77.zip | |
(Fdefine_charset_internal): Fix setting of
emacs_mule_bytes.
Diffstat (limited to 'src')
| -rw-r--r-- | src/charset.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/charset.c b/src/charset.c index dbf883c9ce5..2228a24f698 100644 --- a/src/charset.c +++ b/src/charset.c | |||
| @@ -1042,6 +1042,8 @@ usage: (define-charset-internal ...) */) | |||
| 1042 | emacs_mule_charset[charset.emacs_mule_id] = CHARSET_FROM_ID (id); | 1042 | emacs_mule_charset[charset.emacs_mule_id] = CHARSET_FROM_ID (id); |
| 1043 | if (charset.emacs_mule_id < 0xA0) | 1043 | if (charset.emacs_mule_id < 0xA0) |
| 1044 | emacs_mule_bytes[charset.emacs_mule_id] = charset.dimension + 1; | 1044 | emacs_mule_bytes[charset.emacs_mule_id] = charset.dimension + 1; |
| 1045 | else | ||
| 1046 | emacs_mule_bytes[charset.emacs_mule_id] = charset.dimension + 2; | ||
| 1045 | if (new_definition_p) | 1047 | if (new_definition_p) |
| 1046 | Vemacs_mule_charset_list = nconc2 (Vemacs_mule_charset_list, | 1048 | Vemacs_mule_charset_list = nconc2 (Vemacs_mule_charset_list, |
| 1047 | Fcons (make_number (id), Qnil)); | 1049 | Fcons (make_number (id), Qnil)); |