mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
(print_check_string_charset_prop): Fix previous change.
This commit is contained in:
parent
dedbd91c48
commit
c80bcdbc47
1 changed files with 2 additions and 1 deletions
|
|
@ -1356,7 +1356,8 @@ print_check_string_charset_prop (interval, string)
|
|||
for (i = 0; i < LENGTH (interval); i++)
|
||||
{
|
||||
FETCH_STRING_CHAR_ADVANCE (c, string, charpos, bytepos);
|
||||
if (! EQ (CHARSET_NAME (CHAR_CHARSET (c)), charset))
|
||||
if (! ASCII_CHAR_P (c)
|
||||
&& ! EQ (CHARSET_NAME (CHAR_CHARSET (c)), charset))
|
||||
{
|
||||
print_check_string_result |= PRINT_STRING_UNSAFE_CHARSET_FOUND;
|
||||
break;
|
||||
|
|
|
|||
Loading…
Reference in a new issue