From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25814 invoked by alias); 12 Jun 2016 20:33:00 -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: 38667 Received: (qmail 4207 invoked from network); 12 Jun 2016 20:32:59 -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=-1.9 required=5.0 tests=BAYES_00,T_DKIM_INVALID autolearn=ham autolearn_force=no version=3.4.1 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=secretsauce.net; h=content-type:date:from:message-id:mime-version:subject:to :x-sasl-enc:x-sasl-enc; s=mesmtp; bh=3riJ9gH8Z75sa0bJct+8XxEGFxo =; b=VERiBCq9gVvdDBUbNg4crIVKlk73TK7Wr/gqEjwGJTceEkQHEVMQzv1kmOB uGPxnTloZpCy4PjoSLFz1C/aO1XyvTvPfQP4K2dT2J0lNWMBxlzCXnW27w/mDf/e XtNHYIp8FdLSsJX3ZaMX86j3RWzL8kzEpmIw1xIVq/GD8n/Q= 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=3r iJ9gH8Z75sa0bJct+8XxEGFxo=; b=E4pDM2oL65/v3HKn4uFB+D+2s0swAr8i5a EvKee2DMxeOUHZ0MNMKCaui/VSwEpuz8yPsohZzkbzI2Wl2SY0gqIs/lJmzOmdmd 7uaWmse78ZD6lpLCwu2IDVT+lPvdaqw5r5kZsCZ744AFIj9yDUrhAu89BtzRfXSM B16IVq+H0= X-Sasl-enc: 27h1D/r5Hcum3o1+arBoz/fdc8iW3I/I4PNwo5sBkBNC 1465763578 User-agent: mu4e 0.9.17; emacs 25.0.94.1 From: Dima Kogan To: zsh-workers Subject: Regression: broken completion on modification time Date: Sun, 12 Jun 2016 13:32:56 -0700 Message-ID: <87oa76172f.fsf@secretsauce.net> MIME-Version: 1.0 Content-Type: text/plain Hi. Let's say I have a trivial .zshrc: autoload -Uz compinit compinit In zsh 5.0.5 (Debian version 5.0.5-2) I can type in an interactive shell: $ ls *(m Then I press TAB to get the different ways to specify modification time, and I get time specifier M -- months d -- days h -- hours m -- minutes s -- seconds w -- weeks sense + -- more than - -- less than This is correct. If I update the zsh package, or use the zsh from git and do the same thing, I get no message, and instead the completion cycles between various integers. This is wrong, or at least very different from before, and not obviously correct. I haven't done any more bisecting, but hopefully this will be obvious to somebody. Thanks dima