From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15145 invoked by alias); 21 Nov 2015 22:25:04 -0000 Mailing-List: contact zsh-workers-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Workers List List-Post: List-Help: X-Seq: 37175 Received: (qmail 27336 invoked from network); 21 Nov 2015 22:25:02 -0000 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,T_DKIM_INVALID autolearn=ham autolearn_force=no version=3.4.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=brasslantern-com.20150623.gappssmtp.com; s=20150623; h=from:message-id:date:in-reply-to:comments:references:to:subject :mime-version:content-type; bh=f2j4tIZxHhBNEKDGpUSLteKmJAPIRTnwb/3/oYb6eDk=; b=yWJE/JzKrYVcbS2ZKSLrYFGK5zhTEzZYTqTs8zdFf8JXUi1viaz5FvQ+Nkd8cC04zM Ma7b7JvIxqo31bqv+DIX9Y3H6MqI1IvERYK+a0Vc62Ym1MtKXEhvOPytCk/q4dxX1I36 COnU+FrnDH6YxmWuiV/leD+viE1mxEcw4/Cp1Gfv+uz7FfbVnVRXJE/rXW1vmt+DyOAB lAxDpMdBVvA5XEdP6wyN1b8a58s/RtJWUFc2hLvrW60Y+O4D5gmzuafs2grmnaK7YcOf ud1myDI+HEWSKBlor3CfNiCIJi7U7cUbMunYch7kL0Wzzd7cudLkk+ua6VGe4jEtrL72 rY/Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:message-id:date:in-reply-to:comments :references:to:subject:mime-version:content-type; bh=f2j4tIZxHhBNEKDGpUSLteKmJAPIRTnwb/3/oYb6eDk=; b=JJ25Joq039drLW+1CqL0mRcyolpJ2oM/JJTrHwX5Hs2oVlEv0I8B3vBBchmc8tv4+/ WH6plfq1F4bMv13tuD77by+47nyTGXZmFM30ollTqGwUgCBQ5Dt1GQBbKgJZjEmEMmCR KdjcU778YKS+iF3LpsOTkSuHXWMTYwNQrZ3AFNgLwyVitlU+ADjK45YGgwddaKpM0B7z PJPMsBHHLn1dRmfbpEoBSs7mhRiGAikJ4H+6UxT2PxXPv/i2D+/1j/HX7XMqHVo0Iwkz FtO8/SZvPCgNuDZgouzs4f7oUquHKnR3ObY/4c/2HZ1tS6M2YuEAp6Ll0T/GY6K3hxOh 8FPg== X-Gm-Message-State: ALoCoQksGBhl7gAUgpEPKIuFnPWQ94rcmA3QukUE70wes78QNsFB5B604lslCTrvgTmF/1qijexV X-Received: by 10.98.11.71 with SMTP id t68mr7819892pfi.82.1448144698736; Sat, 21 Nov 2015 14:24:58 -0800 (PST) From: Bart Schaefer Message-Id: <151121142504.ZM17033@torch.brasslantern.com> Date: Sat, 21 Nov 2015 14:25:04 -0800 In-Reply-To: <20151121190908.GA1249@ruderich.org> Comments: In reply to Simon Ruderich "Re: zsh 5.1.1-test-1" (Nov 21, 8:09pm) References: <20151121183514.527eccf6@ntlworld.com> <20151121190908.GA1249@ruderich.org> X-Mailer: OpenZMail Classic (0.9.2 24April2005) To: zsh-workers@zsh.org Subject: Re: zsh 5.1.1-test-1 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii On Nov 21, 8:09pm, Simon Ruderich wrote: } } VCS_INFO_maxexports:7: array parameter zle_bracketed_paste created globally in function VCS_INFO_maxexports That's actually coming directly from Src/Zle/zle_main.c where there is a call to setaparam("zle_bracketed_paste", ...) -- that function now issues a warning if used at top-level, and should be replaced by assignaparam(). We're going to have to do a sweep of the sources for non-special variables that are set with set?param() after dotfiles have been loaded, especially various autoloaded nonspecial parameters from modules [see Src/module.c add_autoparam()]. } VCS_INFO_nvcsformats:13: array parameter msgs created globally in function VCS_INFO_nvcsformats This one is coming from a "zstyle" call. Another unexpected side-effect of testing warn_create_global at a lower level.