From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24238 invoked from network); 4 Jun 2009 12:24:46 -0000 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) 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.5 Received: from new-brage.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.254.104) by ns1.primenet.com.au with SMTP; 4 Jun 2009 12:24:46 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 17622 invoked from network); 4 Jun 2009 12:24:35 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 4 Jun 2009 12:24:35 -0000 Received: (qmail 27782 invoked by alias); 4 Jun 2009 12:24:25 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 27030 Received: (qmail 27753 invoked from network); 4 Jun 2009 12:24:24 -0000 Received: from bifrost.dotsrc.org (130.225.254.106) by sunsite.dk with SMTP; 4 Jun 2009 12:24:24 -0000 Received: from mail-fx0-f228.google.com (mail-fx0-f228.google.com [209.85.220.228]) by bifrost.dotsrc.org (Postfix) with ESMTP id 4E0DC801E289 for ; Thu, 4 Jun 2009 14:24:20 +0200 (CEST) Received: by fxm28 with SMTP id 28so668087fxm.45 for ; Thu, 04 Jun 2009 05:24:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:received:date:from:to:subject :message-id:mime-version:content-type:content-disposition:user-agent; bh=GpFzzzwOSHC3cdCpH/p9cfkm60kj2vAW1dkMKrrwTSc=; b=T0YN/DnIko3fzMzhBmLYGh7Kl3MME3kJA1/P61ZGPh1ZV6q4nvVcX8uY6PYLmqeORL RM14Gj1C7WvdPHDsa9LBUgigEdY2exu/W5N6KDGq6hZHsW7J40VMbrHI5eRdH5Ni9fSO daTWKTy7YmOGY1Tfj4x/fk+RG15Kz0ae1Pxtw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:subject:message-id:mime-version:content-type :content-disposition:user-agent; b=pRbG7CU1yoXgk6IPmoncg3GWxlEFZsNuAblAdGxevc1nwTmuHPYCb2nsU0siKZHh31 2AINzuBWfF1SVP6QtAgy2yyGuCHKmhWn6qXREGNyNMQ/TH6GDV4KgbgVV2OmH0Vgk8DF cto5gONTzG/pOrAAq3bFxsXhugaqoFXi2HTJw= Received: by 10.103.168.12 with SMTP id v12mr1325747muo.130.1244118260308; Thu, 04 Jun 2009 05:24:20 -0700 (PDT) Received: from wicklow.lan (stc92-3-82-245-249-89.fbx.proxad.net [82.245.249.89]) by mx.google.com with ESMTPS id j10sm125469muh.15.2009.06.04.05.24.19 (version=TLSv1/SSLv3 cipher=RC4-MD5); Thu, 04 Jun 2009 05:24:19 -0700 (PDT) Received: by wicklow.lan (Postfix, from userid 1002) id 1776826C06; Thu, 4 Jun 2009 14:24:18 +0200 (CEST) Date: Thu, 4 Jun 2009 14:24:17 +0200 From: Baptiste Daroussin To: zsh-workers@sunsite.dk Subject: Patch to update _file_systems for FreeBSD Message-ID: <20090604122417.GE40721@wicklow.lan> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="neYutvxvOLaeuPCA" Content-Disposition: inline User-Agent: Mutt/1.5.19 (2009-01-05) X-Virus-Scanned: ClamAV 0.94.2/9419/Thu Jun 4 04:47:46 2009 on bifrost X-Virus-Status: Clean --neYutvxvOLaeuPCA Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi, here is a patch to update _file_systems for FreeBSD This is a git diff, please tell me if that's ok for sending patch or not. regards, Bapt --neYutvxvOLaeuPCA Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="zsh-fs.diff" diff --git a/Completion/Unix/Type/_file_systems b/Completion/Unix/Type/_file_systems index fd75e2f..26053c8 100644 --- a/Completion/Unix/Type/_file_systems +++ b/Completion/Unix/Type/_file_systems @@ -16,10 +16,15 @@ case $OSTYPE in ;; osf*) fss=( advfs ufs nfs mfs cdfs ) ;; solaris*) fss=( ufs nfs hsfs s5fs pcfs cachefs tmpfs ) ;; - freebsd*|dragonfly*) + dragonfly*) fss=( cd9660 devfs ext2fs fdesc kernfs linprocfs mfs msdos nfs ntfs null nwfs portal procfs std udf ufs umap union ) ;; + freebsd*) + fss=( cd9660 devfs ext2fs fdesc kernfs linprocfs mfs msdosfs nfs + ntfs nullfs nwfs portal procfs smbfs std udf ufs umap unionfs + reiserfs xfs) + ;; darwin*) fss=( afp cd9660 cddafs devfs fdesc hfs lfs msdos nfs ntfs smbfs synthfs udf ufs volfs webdav ) --neYutvxvOLaeuPCA--