mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-23 13:27:36 +00:00
(map_char_table): Ignore char-table entries for
charsets eight-bit-control and eight-bit-graphic.
This commit is contained in:
parent
afc125e1e9
commit
df2fbcebeb
1 changed files with 4 additions and 1 deletions
|
|
@ -2372,7 +2372,10 @@ map_char_table (c_function, function, subtable, arg, depth, indices)
|
|||
elt = XCHAR_TABLE (subtable)->contents[i];
|
||||
XSETFASTINT (indices[depth], i);
|
||||
charset = XFASTINT (indices[0]) - 128;
|
||||
if (!CHARSET_DEFINED_P (charset))
|
||||
if (depth == 0
|
||||
&& (!CHARSET_DEFINED_P (charset)
|
||||
|| charset == CHARSET_8_BIT_CONTROL
|
||||
|| charset == CHARSET_8_BIT_GRAPHIC))
|
||||
continue;
|
||||
|
||||
if (SUB_CHAR_TABLE_P (elt))
|
||||
|
|
|
|||
Loading…
Reference in a new issue