From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6163 invoked by alias); 14 Apr 2018 03:19:41 -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: List-Unsubscribe: X-Seq: 42640 Received: (qmail 1759 invoked by uid 1010); 14 Apr 2018 03:19:41 -0000 X-Qmail-Scanner-Diagnostics: from mx1.riseup.net by f.primenet.com.au (envelope-from , uid 7791) with qmail-scanner-2.11 (clamdscan: 0.99.2/21882. spamassassin: 3.4.1. Clear:RC:0(198.252.153.129):SA:0(-2.6/5.0):. Processed in 1.935883 secs); 14 Apr 2018 03:19:41 -0000 X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_LOW, SPF_HELO_PASS,SPF_PASS,T_DKIM_INVALID autolearn=ham autolearn_force=no version=3.4.1 X-Envelope-From: ramsdenj@riseup.net X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=riseup.net; s=squak; t=1523675975; bh=G/K2xBc25nfpVsqZmeD9C0SCHBAA0HnjXFFAHx3kwmc=; h=From:To:Cc:In-Reply-To:Date:References:Subject:From; b=ocv8NkS5pIfG5+8d9EQhq2X86GUhXjFPww8z/fonHG3Pjh3tZd1ttx3LNW1t2bl/q NeZceEmXYJc8iNzJ8hTFmu3f01KKRcqIb7jzEIUKyaxcMZ7NFHENaswhb1P+ODovbK MeHHhtO0BxUrzLgshupGLp6EWJ6/oBqHSifGBXbo= X-Riseup-User-ID: F0FF021D4B61A66A3A37676DF8891955175487EBA1C97D4C1FC920B2BB7C8E5E X-ME-Sender: Message-Id: <1523675973.2014280.1337599104.39812D5F@webmail.messagingengine.com> From: John Ramsden To: Bart Schaefer Cc: zsh-workers@zsh.org MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" In-Reply-To: <674768.793a8c04885b44ab8262babac1a6cd3574623e36@popretr.messagingengine.com> Date: Fri, 13 Apr 2018 20:19:33 -0700 References: <1523671201.1300523.1337561832.23CF134B@webmail.messagingengine.com> <674768.793a8c04885b44ab8262babac1a6cd3574623e36@popretr.messagingengine.com> Subject: Re: Bug - invalid pointer Interesting, so adding 'sleep 0.25' to the top of my zshrc seems to have fixed the problem. That's only really a work around though... -- John Ramsden On Fri, Apr 13, 2018, at 7:16 PM, Bart Schaefer wrote: > On Fri, Apr 13, 2018 at 7:00 PM, John Ramsden wrote: > > Okay, so I went ahead and recompiled by adding 'options=(debug !strip)' to my PKGBUILD on Arch. That's all I changed so if I need to do something else to get full debugging symbols let me know. > > Well, there's what I said in other email about what gets passed to configure. > > However, the trace you provided points to code for managing the width > of the window, so I would guess the window is changing size while zle > is trying to get started. There's code to try to block SIGWINCH until > zle is actually ready to go, expecting the window to therefore have > stabilized by the time its size is needed, but it looks like this is > slipping around that somehow.