From: Kenichi Handa Date: Mon, 5 Mar 2001 06:41:40 +0000 (+0000) Subject: (char_to_string): If a single byte char has modifier X-Git-Tag: emacs-pretest-21.0.99~13 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5ef834ea9032214344f353019a6c644e6f8c2772;p=emacs.git (char_to_string): If a single byte char has modifier bits that can't be reflected to the character code, ignore them instead of signalling an error. --- diff --git a/src/charset.c b/src/charset.c index c26728f2cdd..fa355fc21bd 100644 --- a/src/charset.c +++ b/src/charset.c @@ -208,9 +208,8 @@ char_to_string (c, str) c &= (037 | (~0177 & ~CHAR_CTL)); } - /* If C still has any modifier bits, it is an invalid character. */ - if (c & CHAR_MODIFIER_MASK) - invalid_character (c); + /* If C still has any modifier bits, just ignore it. */ + c &= ~CHAR_MODIFIER_MASK; } if (SINGLE_BYTE_CHAR_P (c)) {