mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-04 11:00:45 -08:00
(Fdefine_charset_internal): Make charset
ascii-compatible if the method is CHARSET_METHOD_OFFSET, the code_offset is 0, and covers all ASCII characters.
This commit is contained in:
parent
86fa089ec0
commit
3620330b86
1 changed files with 2 additions and 0 deletions
|
|
@ -1082,6 +1082,8 @@ usage: (define-charset-internal ...) */)
|
|||
i = (i >> 12) << 12;
|
||||
for (; i <= charset.max_char; i += 0x1000)
|
||||
CHARSET_FAST_MAP_SET (i, charset.fast_map);
|
||||
if (charset.code_offset == 0 && charset.max_char >= 0x80)
|
||||
charset.ascii_compatible_p = 1;
|
||||
}
|
||||
else if (! NILP (args[charset_arg_map]))
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue