From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19250 invoked from network); 18 Mar 2009 00:22:40 -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 news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 18 Mar 2009 00:22:40 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 92244 invoked from network); 18 Mar 2009 00:22:32 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 18 Mar 2009 00:22:32 -0000 Received: (qmail 24268 invoked by alias); 18 Mar 2009 00:22:26 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 26751 Received: (qmail 24257 invoked from network); 18 Mar 2009 00:22:26 -0000 Received: from bifrost.dotsrc.org (130.225.254.106) by sunsite.dk with SMTP; 18 Mar 2009 00:22:26 -0000 Received: from smtprelay04.ispgateway.de (smtprelay04.ispgateway.de [80.67.18.16]) by bifrost.dotsrc.org (Postfix) with ESMTP id 2EC5F801E289 for ; Wed, 18 Mar 2009 01:22:12 +0100 (CET) Received: from [212.117.84.111] (helo=fsst.voodoo.lan) by smtprelay04.ispgateway.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.68) (envelope-from ) id 1LjjXw-0002eo-Ja for zsh-workers@sunsite.dk; Wed, 18 Mar 2009 01:22:12 +0100 Received: from hawk by fsst.voodoo.lan with local (Exim 4.69) (envelope-from ) id 1LjjXm-0005zP-5E for zsh-workers@sunsite.dk; Wed, 18 Mar 2009 01:22:02 +0100 From: Frank Terbeck To: zsh-workers@sunsite.dk Subject: PATCH: Use the correct typeset call to create $VCS_INFO_backends Date: Wed, 18 Mar 2009 01:22:01 +0100 Message-Id: <1237335721-22997-1-git-send-email-ft@bewatermyfriend.org> X-Mailer: git-send-email 1.6.2.1.136.g8e24 X-Df-Sender: 430444 X-Virus-Scanned: ClamAV 0.92.1/9126/Wed Mar 18 00:07:14 2009 on bifrost X-Virus-Status: Clean --- Without this, warncreateglobal will complain. Functions/VCS_Info/vcs_info_setsys | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Functions/VCS_Info/vcs_info_setsys b/Functions/VCS_Info/vcs_info_setsys index 42be13c..1484464 100644 --- a/Functions/VCS_Info/vcs_info_setsys +++ b/Functions/VCS_Info/vcs_info_setsys @@ -6,7 +6,7 @@ emulate -L zsh setopt extendedglob typeset_silent local sys -typeset -g VCS_INFO_backends +typeset -ga VCS_INFO_backends VCS_INFO_backends=() -- 1.6.2.1.136.g8e24