mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-03-01 19:30:45 -08:00
(map_charset_chars): Fix arg to map_charset_chars in
when the charset is superset type.
This commit is contained in:
parent
10453be959
commit
111daccfb5
1 changed files with 2 additions and 1 deletions
|
|
@ -640,7 +640,8 @@ map_charset_chars (c_function, function, arg,
|
|||
this_from = CHARSET_MIN_CODE (charset);
|
||||
if (this_to > CHARSET_MAX_CODE (charset))
|
||||
this_to = CHARSET_MAX_CODE (charset);
|
||||
map_charset_chars (c_function, function, arg, charset, from, to);
|
||||
map_charset_chars (c_function, function, arg, charset,
|
||||
this_from, this_to);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue