From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 980 invoked by alias); 16 Sep 2016 05:00:32 -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: 39358 Received: (qmail 6192 invoked from network); 16 Sep 2016 05:00:32 -0000 X-Qmail-Scanner-Diagnostics: from mail-pa0-f42.google.com 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(209.85.220.42):SA:0(0.0/5.0):. Processed in 0.746021 secs); 16 Sep 2016 05:00:32 -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=0.0 required=5.0 tests=T_DKIM_INVALID autolearn=unavailable autolearn_force=no version=3.4.1 X-Envelope-From: schaefer@brasslantern.com X-Qmail-Scanner-Mime-Attachments: | X-Qmail-Scanner-Zip-Files: | Received-SPF: none (ns1.primenet.com.au: domain at brasslantern.com does not designate permitted sender hosts) 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; bh=RPRopuH6gxgLSNLQUwmYR/jNQWJmusL0onaD3cvcXgQ=; b=AInFA70cdtJUo4KLhajyqtiY/xE0wHgaz+6bI0ojOuvfs6r+q87giOYm7U/ALodlqV xYq3diDjRp09TlKj+yq/NE/KF0yiGJlEXY0zN1vgK2HLwlZz4iUqzqK028XP5temjsMj ZCKY0Gr2nOGX5Ea5XxQmOnLaZWD0cWGDfyB/7ec/i9JKSlFoWjcccYfucQmKFjKG9qvJ YqvvAYwdXon21A6xhE0RYKGmiGExzuhNlSB/SwCQYWHcG1MXpU/J9SO6EL3u3IS0c+d3 HpX7kgIFYX+t5s+ILAL6q1lP/1GRG2FkzacmnYlPfyp4Q2zSDlfVaw0s4LChxbbPk6oZ GljA== 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; bh=RPRopuH6gxgLSNLQUwmYR/jNQWJmusL0onaD3cvcXgQ=; b=jlElgA2V1M9+MtvMdoJnVq9YfIwzUTf0A30vGAut+juqAqJuG9GgvDRmMdpKboY+XS bKhuxmk7WbeC+U+nFAJtnwoz/jmjFIJ+O+GdQAvHMrokuLAkq4h2zePGZHRpPel7+/FB Cbft6lkjZe/eKSWzlzbP2KRDoqHJZO6gnNBNNHi043wn3pPF5SM1xmT+Akih3xBaayiN XS/4/4+CSAHMimiwLSDvLZ2UpYIW8WiykpmDfN2riGYnBob2CFsVFMFgDPXPWZU+2/jS YH4ZTRTkpiCI8HLo6+UqGofvq0laVlbMjbpu0FJZeCY/SfmA9A0BvTglrhk5DOvXtCYS nLeA== X-Gm-Message-State: AE9vXwOPh2Gq/59/I6xM9XVwZsiULVVIYqu+9H1krpe2OoE3nLmY4QxyW+h8Rc+wG/zZuA== X-Received: by 10.66.40.235 with SMTP id a11mr11526271pal.145.1474002026505; Thu, 15 Sep 2016 22:00:26 -0700 (PDT) From: Bart Schaefer Message-Id: <160915220041.ZM4454@torch.brasslantern.com> Date: Thu, 15 Sep 2016 22:00:41 -0700 In-Reply-To: <1473995130-21781-1-git-send-email-danielsh@fujitsu.shahaf.local2> Comments: In reply to Daniel Shahaf "[PATCH] Etc/BUGS: Remove fixed items, add 'compset -q' item from workers/39306." (Sep 16, 3:05am) References: <160915174039.ZM3855@torch.brasslantern.com> <1473995130-21781-1-git-send-email-danielsh@fujitsu.shahaf.local2> X-Mailer: OpenZMail Classic (0.9.2 24April2005) To: zsh-workers@zsh.org Subject: Re: [PATCH] Etc/BUGS: Remove fixed items, add 'compset -q' item from workers/39306. MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Thanks for looking at this. On Sep 16, 3:05am, Daniel Shahaf wrote: } } ------------------------------------------------------------------------ } +'compset -q' has a byte-counting issue, described in workers/39306: } + } +% compdef _f f } +% _f() { compset -q } } +% f $'\' } +compcore.c:1684: expecting 'x' at offset 2 of "'x" } +------------------------------------------------------------------------ True, but not the bug I was thinking of; that one is entirely invisible unless the shell was configured with --enable-zsh-debug, and fixing it would not change the end result, so it'll very seldom be seen. The bug I meant to mention was the multiple-backslashing of tildes and leading equal signs following "compadd -q", and consequent inability to complete them properly. But it's hard to create a real-world example of that.