From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2873 invoked from network); 10 May 2007 17:55:53 -0000 X-Spam-Checker-Version: SpamAssassin 3.2.0 (2007-05-01) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.5 required=5.0 tests=AWL,BAYES_00 autolearn=no version=3.2.0 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 10 May 2007 17:55:53 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 50377 invoked from network); 10 May 2007 17:55:48 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 10 May 2007 17:55:48 -0000 Received: (qmail 4578 invoked by alias); 10 May 2007 17:55:45 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 23425 Received: (qmail 4568 invoked from network); 10 May 2007 17:55:45 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 10 May 2007 17:55:45 -0000 Received: (qmail 50069 invoked from network); 10 May 2007 17:55:45 -0000 Received: from redoubt.spodhuis.org (HELO mx.spodhuis.org) (193.202.115.177) by a.mx.sunsite.dk with SMTP; 10 May 2007 17:55:42 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=first1; d=spodhuis.org; h=Received:Date:From:To:Cc:Subject:Message-ID:Mail-Followup-To:References:MIME-Version:Content-Type:Content-Disposition:Content-Transfer-Encoding:In-Reply-To; b=akE9MJXp2fsjL+32PIXmDUGKxyKyWBcDZooMxys0ZeoCQNeduqWQVx0l+qYgOXIt4oee9B+m/08wkdbCaendXdInFmhTknxMOkMunTkeWRM0XtmqqdGl+sXeuazw1L7eR4PWTppXr4ED/oHj67n51x7kuWACyfI+Q3VKLrD/bOU=; Received: by smtp.spodhuis.org with local id 1HmCrd-000HhV-IM; Thu, 10 May 2007 17:55:41 +0000 Date: Thu, 10 May 2007 10:55:41 -0700 From: Phil Pennock To: Timo Aaltonen Cc: zsh-workers@sunsite.dk Subject: Re: problems with 4.3.4 and Tru64 Message-ID: <20070510175541.GA67479@redoubt.spodhuis.org> Mail-Followup-To: Timo Aaltonen , zsh-workers@sunsite.dk References: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: On 2007-05-10 at 11:25 +0300, Timo Aaltonen wrote: > I've compiled 4.3.4 on Tru64 5.1B and I can't type some characters with it > (åäö being most useful for Finns), it only makes a beep. With 4.2.x/4.3.2 > it works, but since they are otherwise not that useful for UTF8 I had high > hopes for the new release.. > > Any ideas why that might be? As a double-check to separate out input from shell handling, it'd be good to see if you can compose and see the characters using insert-compose-char. autoload insert-composed-char zle -N insert-composed-char bindkey '^Xk' insert-composed-char (assuming here that you're using bash input bindings and are happy with as being close to vim's insert-mode ) This turns on digraph composition, similar to vim's digraphs or X11 Compose key. To input the characters, type followed by two characters; you get å ä ö from the pairs: a0 a: o: If these display fine, then multibyte is working and parts of zle are working; the problem will be in input processing. If these don't display, then the problem's not in the input processing. Thanks, -Phil