From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/32497 Path: main.gmane.org!not-for-mail From: ShengHuo ZHU Newsgroups: gmane.emacs.gnus.general Subject: Re: imap breaks latin-1 characters Date: Tue, 19 Sep 2000 08:43:15 -0400 Sender: owner-ding@hpc.uh.edu Message-ID: <200009191243.e8JChFg09912@zsh.2y.net> References: <87vgvu81n4.fsf@gnu.org> <200009181322.e8IDMYg03611@zsh.2y.net> <200009181517.e8IFHV503937@zsh.2y.net> <200009181958.e8IJwRT06371@zsh.2y.net> <200009182234.e8IMY0R07025@zsh.2y.net> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Trace: main.gmane.org 1035168774 20143 80.91.224.250 (21 Oct 2002 02:52:54 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 02:52:54 +0000 (UTC) Return-Path: Original-Received: from fisher.math.uh.edu (fisher.math.uh.edu [129.7.128.35]) by mailhost.sclp.com (Postfix) with ESMTP id 2E139D051E for ; Tue, 19 Sep 2000 08:46:05 -0400 (EDT) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by fisher.math.uh.edu (8.9.1/8.9.1) with ESMTP id HAC23581; Tue, 19 Sep 2000 07:42:31 -0500 (CDT) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Tue, 19 Sep 2000 07:41:44 -0500 (CDT) Original-Received: from mailhost.sclp.com (postfix@66-209.196.61.interliant.com [209.196.61.66] (may be forged)) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id HAA10270 for ; Tue, 19 Sep 2000 07:41:33 -0500 (CDT) Original-Received: from zsh.2y.net (d185fd01c.rochester.rr.com [24.95.208.28]) by mailhost.sclp.com (Postfix) with ESMTP id C4ED3D051E for ; Tue, 19 Sep 2000 08:41:57 -0400 (EDT) Original-Received: (from zsh@localhost) by zsh.2y.net (8.10.0/8.10.0) id e8JChFg09912; Tue, 19 Sep 2000 08:43:15 -0400 Original-To: ding@gnus.org X-Attribution: ZSH X-Face: 'IF:e51ib'Qbl^(}l^&4-J`'P!@[4~O|&k#:@Gld#b/]oMq&`&FVY._3+b`mzp~Jeve~/#/ ERD!OTe<86UhyN=l`mrPY)M7_}`Ktt\K+58Z!hu7>qU,i.N7TotU[FYE(f1;}`g2xj!u*l`^&=Q!g{ *q|ddto|nkt"$r,K$[)"|6,elPH= GJ6Q In-Reply-To: Simon Josefsson's message of "19 Sep 2000 11:27:26 +0200" User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/21.0.90 Original-Lines: 25 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:32497 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:32497 Simon Josefsson writes: [...] > Or is there a (string-as-multibyte-foo "1234\201\337ABCD") that return > a multibyte string that will display as 1234\201ßABCD? Isn't that > what we need? string-as-multibyte is something acting like type casting instead of literally converting. We need something convert it to 8bit multibyte string "1234\201\337ABCD", not "1234\201ßABCD" which contains latin-iso8859-1. [...] > First case: `1234\201\201ßABCD' Second case: `1234\201ßABCD'. In echo > area. A freshly started emacs/gnus display one less \201 in both > cases. In the *scratch* buffer I always seem to get `1234\201ßABCD' > and `1234ßABCD' respectively. There could be a bug somewhere. ShengHuo