From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21072 invoked from network); 18 Jan 2008 22:01:10 -0000 X-Spam-Checker-Version: SpamAssassin 3.2.4 (2008-01-01) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.2.4 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 18 Jan 2008 22:01:10 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 90369 invoked from network); 18 Jan 2008 22:00:52 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 18 Jan 2008 22:00:52 -0000 Received: (qmail 19083 invoked by alias); 18 Jan 2008 22:00:38 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 12456 Received: (qmail 19065 invoked from network); 18 Jan 2008 22:00:37 -0000 Received: from bifrost.dotsrc.org (130.225.254.106) by sunsite.dk with SMTP; 18 Jan 2008 22:00:37 -0000 Received: from virusfilter.dotsrc.org (bifrost [127.0.0.1]) by spamfilter.dotsrc.org (Postfix) with ESMTP id E129A80307F6 for ; Fri, 18 Jan 2008 23:00:33 +0100 (CET) Received: from an-out-0708.google.com (an-out-0708.google.com [209.85.132.240]) by bifrost.dotsrc.org (Postfix) with ESMTP for ; Fri, 18 Jan 2008 23:00:33 +0100 (CET) Received: by an-out-0708.google.com with SMTP id c14so304374anc.13 for ; Fri, 18 Jan 2008 14:00:32 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; bh=hCyI4QZRz7dd53XC842OnQBu+J/bXE3BafjUIjjsV5A=; b=QMNDn3Swaa6csH0nSeVGySjTMd823vqEgT2kXlNhHzJwv2fR0m+qj1OVOx7txnYEnKK7Aa/66C+dnXNFUeySkS17yKZ2qHD2CWruAYFh+znYrB7FZLx5r7Tw6AfjBYe0lqD4gZ+Sl7PaLxYTvF7SI74FTyu04RBBetjxYguI0o8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=Nn49HlWmDJ04DK4KztaM0VaMRbbup/VEUhy1q4jPR3LZv4z8p9L3ynlTPcaSR1J9e+D59iRUiLX+FHnBiON1PPBS6Hla7pBWq1C7W2VzCFL7x+Q/vxlQMklkMDWYDRsRvx2RPgXWNoSTJIMMWXy/SIlrtMw6c3N85hygrNhtrzY= Received: by 10.101.68.19 with SMTP id v19mr8084932ank.104.1200693632738; Fri, 18 Jan 2008 14:00:32 -0800 (PST) Received: by 10.100.143.1 with HTTP; Fri, 18 Jan 2008 14:00:32 -0800 (PST) Message-ID: <2d460de70801181400vc04d907va3bfa29fd468306a@mail.gmail.com> Date: Fri, 18 Jan 2008 23:00:32 +0100 From: "Richard Hartmann" To: "zsh users" Subject: Bug in umount completion MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: ClamAV using ClamSMTP Hi all, zsh 4.3.4 fails to fully escape mounted directories. To reproduce: mkdir -p "/tmp/foo's bar" mount /dev/whatever "/tmp/foo's bar" #note that completing on this will work umount /tmp/f this gives me: umount /media/foo's\040bar As you can see, the apostrophe is not escaped, thus hitting enter will get you into quote-mode. As an aside, the whitespace is completed as \040 which is also strange. Richard