bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#1770: 23.0.60; (message-check 'illegible-text ...) fails on eight-bi


From: Lars Magne Ingebrigtsen
Subject: bug#1770: 23.0.60; (message-check 'illegible-text ...) fails on eight-bit chars
Date: Thu, 30 Sep 2010 19:48:12 +0200
User-agent: Gnus/5.110011 (No Gnus v0.11) Emacs/24.0.50 (gnu/linux)

Kenichi Handa <handa@m17n.org> writes:

> Yes.  For Emacs 23, adding eight-bit in the list is ok.
> But, I think it is better to catch non-Unicode characters
> (#x110000..#x3FFF7F) here too.  For Emacs 23 only, we can
> have this simple code:
>
>       (while (not (eobp))
>         (when (not (encode-char (char-after) 'unicode))
>                 ;; or simply (>= (char-after) #x110000)
>           (if (eq choice ?i)
>               (message-kill-all-overlays)
>             (delete-char 1)
>             (when (eq choice ?r)
>               (insert message-replacement-char))))
>         (forward-char)
>         (skip-chars-forward mm-7bit-chars))

Was this installed?  If not, was a different fix applied, and the bug
not closed, or is this still a problem?

-- 
(domestic pets only, the antidote for overdose, milk.)
  larsi@gnus.org * Lars Magne Ingebrigtsen





reply via email to

[Prev in Thread] Current Thread [Next in Thread]