From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7367 invoked from network); 7 Jun 2007 21:05:28 -0000 X-Spam-Checker-Version: SpamAssassin 3.2.0 (2007-05-01) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.6 required=5.0 tests=AWL,BAYES_00,LONGWORDS autolearn=no version=3.2.0 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 7 Jun 2007 21:05:28 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 66234 invoked from network); 7 Jun 2007 21:05:22 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 7 Jun 2007 21:05:22 -0000 Received: (qmail 2659 invoked by alias); 7 Jun 2007 21:05:20 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 23535 Received: (qmail 2649 invoked from network); 7 Jun 2007 21:05:20 -0000 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by sunsite.dk with SMTP; 7 Jun 2007 21:05:20 -0000 Received: (qmail 66043 invoked from network); 7 Jun 2007 21:05:20 -0000 Received: from mtaout03-winn.ispmail.ntl.com (81.103.221.49) by a.mx.sunsite.dk with SMTP; 7 Jun 2007 21:05:12 -0000 Received: from aamtaout01-winn.ispmail.ntl.com ([81.103.221.35]) by mtaout03-winn.ispmail.ntl.com with ESMTP id <20070607210510.WUPZ13.mtaout03-winn.ispmail.ntl.com@aamtaout01-winn.ispmail.ntl.com> for ; Thu, 7 Jun 2007 22:05:10 +0100 Received: from pws-pc.ntlworld.com ([81.107.45.67]) by aamtaout01-winn.ispmail.ntl.com with ESMTP id <20070607210510.GYBR219.aamtaout01-winn.ispmail.ntl.com@pws-pc.ntlworld.com> for ; Thu, 7 Jun 2007 22:05:10 +0100 Received: from pws-pc.ntlworld.com (pws-pc.ntlworld.com [127.0.0.1]) by pws-pc.ntlworld.com (8.13.8/8.13.8) with ESMTP id l57L4rBr032495 for ; Thu, 7 Jun 2007 22:04:54 +0100 Message-Id: <200706072104.l57L4rBr032495@pws-pc.ntlworld.com> From: Peter Stephenson To: zsh-workers@sunsite.dk (Zsh hackers list) Subject: PATCH: autoload suffix alias parameters Date: Thu, 07 Jun 2007 22:04:53 +0100 $saliases and $dis_saliases aren't marked for autoloading. This became obvious with the current state of autoloading where features that aren't marked for autoloading don't get hooked in implicitly. This needs to change back for compatibility, but it'll do for now until I get around to adding the feature-specific autoloading. Index: Src/Modules/parameter.mdd =================================================================== RCS file: /cvsroot/zsh/zsh/Src/Modules/parameter.mdd,v retrieving revision 1.3 diff -u -r1.3 parameter.mdd --- Src/Modules/parameter.mdd 17 Sep 2006 19:28:46 -0000 1.3 +++ Src/Modules/parameter.mdd 7 Jun 2007 21:04:14 -0000 @@ -2,6 +2,6 @@ link=either load=yes -autoparams="parameters commands functions dis_functions funcstack functrace builtins dis_builtins reswords dis_reswords options modules dirstack history historywords jobtexts jobdirs jobstates nameddirs userdirs aliases dis_aliases galiases dis_galiases" +autoparams="parameters commands functions dis_functions funcstack functrace builtins dis_builtins reswords dis_reswords options modules dirstack history historywords jobtexts jobdirs jobstates nameddirs userdirs aliases dis_aliases galiases dis_galiases saliases dis_saliases" objects="parameter.o" -- Peter Stephenson Web page now at http://homepage.ntlworld.com/p.w.stephenson/