From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17307 invoked from network); 1 Oct 2004 17:25:29 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 1 Oct 2004 17:25:29 -0000 Received: (qmail 75126 invoked from network); 1 Oct 2004 17:25:23 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 1 Oct 2004 17:25:23 -0000 Received: (qmail 11781 invoked by alias); 1 Oct 2004 17:25:20 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 20433 Received: (qmail 11765 invoked from network); 1 Oct 2004 17:25:19 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 1 Oct 2004 17:25:19 -0000 Received: (qmail 74758 invoked from network); 1 Oct 2004 17:25:19 -0000 Received: from dsl3-63-249-88-2.cruzio.com (HELO binome.blorf.net) (63.249.88.2) by a.mx.sunsite.dk with SMTP; 1 Oct 2004 17:25:18 -0000 Received: by binome.blorf.net (Postfix, from userid 1000) id 47E0530EA; Fri, 1 Oct 2004 10:25:16 -0700 (PDT) Date: Fri, 1 Oct 2004 10:25:16 -0700 From: Wayne Davison To: zsh-workers@sunsite.dk Subject: New _make checked in Message-ID: <20041001172516.GA26529@blorf.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.6+20040722i X-Spam-Checker-Version: SpamAssassin 2.63 on a.mx.sunsite.dk X-Spam-Level: X-Spam-Status: No, hits=-0.0 required=6.0 tests=BAYES_44 autolearn=no version=2.63 X-Spam-Hits: -0.0 I've committed the _make completer that was mentioned in 20277 with a couple changes: - The code that sets variables in the environment is safer, and will no longer fail with an error if a makefile has something like FOO!=bar in it (though it does not yet understand the extended != or ?= assignment styles that Geoff mentioned). - One eval was replaced with the more optimal code that Bart suggested. ..wayne..