zsh-workers
 help / color / mirror / code / Atom feed
From: Peter Stephenson <pws@csr.com>
To: Fernando Vezzosi <fvezzosi@masobit.net>, zsh-workers@sunsite.dk
Subject: Re: BUG: "setopt autocd" and auto-cd completion of dirs with funny (Unicode) chars
Date: Fri, 27 Apr 2007 17:01:45 +0100	[thread overview]
Message-ID: <20070427170145.a75a90b1.pws@csr.com> (raw)
In-Reply-To: <20070427144905.GA1379@lothlorien.passione>

Fernando Vezzosi <fvezzosi@masobit.net> wrote:
> Hi -workers,
> zsh-beta 4.3.2-dev-1+20070413-1 on Debian Sid (i686-pc-linux-gnu)
> here..
> 
> I use zsh-beta because the plain zsh package doesn't complete
> Unicode (UTF-8) filenames and dirs.  With zsh-beta it's much better,
> but it fails when auto-cd`ing into some Unicode-named directory..

Aha... you're using raw out-of-the-box completion, not compinit, right?

Index: Src/Zle/compctl.c
===================================================================
RCS file: /cvsroot/zsh/zsh/Src/Zle/compctl.c,v
retrieving revision 1.31
diff -u -r1.31 compctl.c
--- Src/Zle/compctl.c	3 Dec 2006 21:07:18 -0000	1.31
+++ Src/Zle/compctl.c	27 Apr 2007 16:00:44 -0000
@@ -2188,9 +2188,14 @@
 		if (!test)
 		    continue;
 		if (!all) {
+		    char *ums;
+		    int umlen;
 		    /* We still have to check the file type, so
prepare *
 		     * the path buffer by appending the
filename.       */
-		    strcpy(q, n);
+		    ums = dupstring(n);
+		    unmetafy(ums, &umlen);
+		    memcpy(q, ums, umlen);
+		    q[umlen] = '\0';
 		    /* And do the stat. */
 		    if (stat(p, &buf) < 0)
 			continue;

-- 
Peter Stephenson <pws@csr.com>                  Software Engineer
CSR PLC, Churchill House, Cambridge Business Park, Cowley Road
Cambridge, CB4 0WZ, UK                          Tel: +44 (0)1223 692070


To access the latest news from CSR copy this link into a web browser:  http://www.csr.com/email_sig.php

To get further information regarding CSR, please visit our Investor Relations page at http://ir.csr.com/csr/about/overview


  reply	other threads:[~2007-04-27 16:02 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-04-27 14:49 Fernando Vezzosi
2007-04-27 16:01 ` Peter Stephenson [this message]
2007-04-27 16:31   ` Fernando Vezzosi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20070427170145.a75a90b1.pws@csr.com \
    --to=pws@csr.com \
    --cc=fvezzosi@masobit.net \
    --cc=zsh-workers@sunsite.dk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).