From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=RCVD_IN_DNSWL_NONE autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 23964 invoked from network); 29 Dec 2020 15:56:50 -0000 Received: from ewsd.inri.net (107.191.116.128) by inbox.vuxu.org with ESMTPUTF8; 29 Dec 2020 15:56:50 -0000 Received: from mimir.eigenstate.org ([206.124.132.107]) by ewsd; Tue Dec 29 10:55:35 -0500 2020 Received: from abbatoir.fios-router.home (pool-74-101-2-6.nycmny.fios.verizon.net [74.101.2.6]) by mimir.eigenstate.org (OpenSMTPD) with ESMTPSA id 13c310b2 (TLSv1.2:ECDHE-RSA-AES256-SHA:256:NO) for <9front@9front.org>; Tue, 29 Dec 2020 07:55:26 -0800 (PST) Message-ID: <1F6D86AF7FEFD3EC78F1AEBBB88368C1@eigenstate.org> To: 9front@9front.org Date: Tue, 29 Dec 2020 07:55:25 -0800 From: ori@eigenstate.org In-Reply-To: <5AC33AE9143B9556254F88884E7B46FF@typed-hole.org> MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit List-ID: <9front.9front.org> List-Help: X-Glyph: ➈ X-Bullshit: markup shader-based SVG over SSL framework-scale out-scaling optimizer Subject: Re: [9front] Nail: embrace, extend, extinguish Reply-To: 9front@9front.org Precedence: bulk Quoth julien@typed-hole.org: > I've been using Nail daily since a few weeks and so far I can say it > works very well. > I have a weird behaviour though, selecting a mail in the list and > clicking Delmesg duplicates it (in the list) with the new one marked > for deletion. > > Looks like: > > 83/ ... > 82/ Mail title > 82/ ∉ Mail title > 81/ ... > > Putting the changes only removes the marked one and the remaining one > can't be opened. > > -- > julienxx > Does this happen consistently? This is what happens when mesglineno() computes the incorrect line number and replaces the wrong line. I'm guessing that there's a message somewhere between the most recnet message and message 82 that's somehow incrementing the line count by 2. would you be able to send me a dump of the mailbox flags the next time you see this happen? This is how I do it: % mk mbox.acid % acid -l mbox.acid $nailpid acid; defn dumpmesg(n){ complex Mbox mbox; local m, p; p = mbox.mesg; loop 0,n do{ m = *p; complex Mesg m; print("=== ", *p, " ", *(m.name\s), " flags=", m.flags\x, " state=", m.state\x, " ", *(m.subject\s), "\n"); p = p + 8; } } acid; dumpmesg(100)