Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
zle_tricky.c:659: BUG: 0 <= wb (4) <= zlemetacs (2) <= we (5) is not true!
- X-seq: zsh-workers 37012
- From: Daniel Shahaf <d.s@xxxxxxxxxxxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: zle_tricky.c:659: BUG: 0 <= wb (4) <= zlemetacs (2) <= we (5) is not true!
- Date: Thu, 29 Oct 2015 13:12:53 +0000
- Dkim-signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= daniel.shahaf.name; h=content-type:date:from:message-id :mime-version:subject:to:x-sasl-enc:x-sasl-enc; s=mesmtp; bh=WTE Hr7WQueCYguvKC1hXJE9kjGg=; b=iuYhhYGmHGLPZNxbfNhfcRKZ/FNB1nWp4Ln oU96unTO3b4PzI7wIVSGgn9R/6ymzv00I3nB12QphEKoKByC4M8DXz7FxDhwHvhr AKxVrmz+RPYriNfNkNzghfimlABCTNKJn4QXrwtbaMIY7373lxngd+NAIO7bwMJz RY2wnyNE=
- Dkim-signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=content-type:date:from:message-id :mime-version:subject:to:x-sasl-enc:x-sasl-enc; s=smtpout; bh=WT EHr7WQueCYguvKC1hXJE9kjGg=; b=CClgEVWOtqTd8oZL8H42lcuP6EIn8ruy4H S0UYlkCRodhKdzV0hBpWZlnWG7TWebvapiRVNWU3NTNJ5DLP3sErN9JnbtM94RVT ZMMvDcW9dsBqxt3f8xs4LmGsg5JEwCHoFeKxmUQY38XlVnMKwvN3jWeG4kQsajym 3WTFevOt8=
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
To reproduce:
$ zsh -f
% echo $ZSH_PATCHLEVEL
0920bc6881af979ec538c8ab635c07f52601de4b
% : 2>1[move the cursor such that LBUFFER=": "][press <TAB>]
% : zle_tricky.c:659: BUG: 0 <= wb (4) <= zlemetacs (2) <= we (5) is not true!
: 2>1
It's this line from docomplete():
DPUTS3(wb < 0 || zlemetacs < wb || zlemetacs > we,
"BUG: 0 <= wb (%d) <= zlemetacs (%d) <= we (%d) is not true!",
wb, zlemetacs, we);
That line was last mentioned in users/20042 (in the discussions about
whether to commit 34781).
It reproduces in 5.0.7 too (didn't check older).
Messages sorted by:
Reverse Date,
Date,
Thread,
Author