<<< Date Index >>>     <<< Thread Index >>>

Re: [Mutt] #3462: Mutt no longer displays nbsp characters, breaking copy-paste



#3462: Mutt no longer displays nbsp characters, breaking copy-paste
---------------------+------------------------------------------------------
 Reporter:  vinc17   |       Owner:  mutt-dev
     Type:  defect   |      Status:  new     
 Priority:  major    |   Milestone:          
Component:  display  |     Version:          
 Keywords:           |  
---------------------+------------------------------------------------------

Comment(by vinc17):

 Perhaps on the person's machine, nbsp isn't printable (IIRC, I had already
 seen something like that years ago, but this was ISO-8859-1), in which
 case you may want to replace
 {{{
       else if (Charset_is_utf8 && wc == 0x00A0)
 }}}
 by
 {{{
       else if (Charset_is_utf8 && wc == 0x00A0 && ! IsWPrint (wc))
 }}}
 in your patch. This won't introduce the copy-paste problem on machines
 where nbsp is printable.

-- 
Ticket URL: <http://dev.mutt.org/trac/ticket/3462#comment:3>
Mutt <http://www.mutt.org/>
The Mutt mail user agent