From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3042 invoked from network); 19 Mar 2004 21:14:25 -0000 Received: from sunsite.dk (130.225.247.90) by ns1.primenet.com.au with SMTP; 19 Mar 2004 21:14:25 -0000 Received: (qmail 17019 invoked by alias); 19 Mar 2004 21:14:12 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 19661 Received: (qmail 16951 invoked from network); 19 Mar 2004 21:14:12 -0000 Received: from localhost (HELO sunsite.dk) (127.0.0.1) by localhost with SMTP; 19 Mar 2004 21:14:12 -0000 X-MessageWall-Score: 0 (sunsite.dk) Received: from [66.93.131.57] by sunsite.dk (MessageWall 1.0.8) with SMTP; 19 Mar 2004 21:14:11 -0000 Received: from lorien.emufarm.org (localhost [127.0.0.1]) by lorien.emufarm.org (8.12.7/8.12.7) with ESMTP id i2JLEA1t014389 for ; Fri, 19 Mar 2004 13:14:10 -0800 Received: (from duvall@localhost) by lorien.emufarm.org (8.12.7/8.12.7/Submit) id i2JLE9tu014388 for zsh-workers@sunsite.dk; Fri, 19 Mar 2004 13:14:09 -0800 Date: Fri, 19 Mar 2004 13:14:09 -0800 From: Danek Duvall To: zsh-workers@sunsite.dk Subject: patch to _diff_options for Solaris Message-ID: <20040319211409.GA23658@lorien.emufarm.org> Mail-Followup-To: Danek Duvall , zsh-workers@sunsite.dk Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="wRRV7LY7NUeQGEoC" Content-Disposition: inline User-Agent: Mutt/1.5.4i --wRRV7LY7NUeQGEoC Content-Type: text/plain; charset=us-ascii Content-Disposition: inline The attached patch allows "diff -u" to be recognized not just on Solaris 9, but on Solaris 9 and up (it breaks on 10). Thanks, Danek --wRRV7LY7NUeQGEoC Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="completions.patch" --- zsh-4.2.0/Completion/Unix/Type/_diff_options.orig Fri Nov 14 03:56:56 2003 +++ zsh-4.2.0/Completion/Unix/Type/_diff_options Fri Mar 19 13:07:38 2004 @@ -103,7 +103,7 @@ "$@" else case $OSTYPE in - solaris2.9) + solaris2.<9->) args=( '(-c -e -f -C)-u[output a unified diff]' ) ;& solaris*) --wRRV7LY7NUeQGEoC--