Mercurial > emacs
changeset 89263:208b5b32e08c
(Fset_charset_priority): Fix previous change.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Wed, 30 Oct 2002 00:56:45 +0000 |
parents | 17709000b5f0 |
children | bb4ce770b305 |
files | src/charset.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/charset.c Wed Oct 30 00:43:11 2002 +0000 +++ b/src/charset.c Wed Oct 30 00:56:45 2002 +0000 @@ -2011,7 +2011,7 @@ for (old_list = Vcharset_ordered_list, new_head = Qnil; CONSP (old_list); old_list = XCDR (old_list)) { - if (Fmemq (XCAR (old_list), Viso_2022_charset_list)) + if (! NILP (Fmemq (XCAR (old_list), Viso_2022_charset_list))) new_head = Fcons (XCAR (old_list), new_head); } Viso_2022_charset_list = Fnreverse (new_head);