From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8916 invoked from network); 11 Feb 2006 19:57:49 -0000 X-Spam-Checker-Version: SpamAssassin 3.1.0 (2005-09-13) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.5 required=5.0 tests=AWL,BAYES_00, FORGED_RCVD_HELO autolearn=ham version=3.1.0 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 11 Feb 2006 19:57:49 -0000 Received: (qmail 3608 invoked from network); 11 Feb 2006 19:57:41 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 11 Feb 2006 19:57:41 -0000 Received: (qmail 18096 invoked by alias); 11 Feb 2006 19:57:35 -0000 Mailing-List: contact zsh-users-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 9916 Received: (qmail 18086 invoked from network); 11 Feb 2006 19:57:35 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 11 Feb 2006 19:57:35 -0000 Received: (qmail 2551 invoked from network); 11 Feb 2006 19:57:35 -0000 Received: from zproxy.gmail.com (64.233.162.202) by a.mx.sunsite.dk with SMTP; 11 Feb 2006 19:57:34 -0000 Received: by zproxy.gmail.com with SMTP id i28so695772nzi for ; Sat, 11 Feb 2006 11:57:33 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=ANBfSMwl4LWejwXjsIXezRT8b3g27dlBZ18FHgEeO/unW3PHuqub/GS45NSRuiKz/LpxeKfvgoRbx5mGqh0r59zMibdYGksSKBk4AnU3CGem7vAaYq48LHDhn4MpUh0nFNwenWxco2MHGGk1K6VwtpZ53BHUMkairNqvakUmIcY= Received: by 10.64.156.14 with SMTP id d14mr324825qbe; Sat, 11 Feb 2006 11:57:33 -0800 (PST) Received: by 10.65.35.4 with HTTP; Sat, 11 Feb 2006 11:57:33 -0800 (PST) Message-ID: Date: Sat, 11 Feb 2006 14:57:33 -0500 From: Ian Langworth To: zsh-users@sunsite.dk Subject: compdef weirdness with function MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline If I add a completion definition for some arbitrary, undefined symbol, % compdef _perl_modules foo The completion works normally: % foo Acme:: Acme::Bleach Acme::Magpie Acme::Morse Acme::DWIM Acme::Magpie::l33t However, if I then define foo: % foo () { echo "args are: $*" } The completion stops working, even if I re-execute the compdef command above. What am I doing wrong? -- Ian Langworth