From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4738 invoked by alias); 16 Dec 2013 20:42:10 -0000 Mailing-List: contact zsh-users-help@zsh.org; run by ezmlm Precedence: bulk X-No-Archive: yes List-Id: Zsh Users List List-Post: List-Help: X-Seq: 18226 Received: (qmail 22823 invoked from network); 16 Dec 2013 20:41:56 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.2 X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :subject:content-type:content-transfer-encoding; bh=toX63Z0c6tjRe7hm9X+JT2INCwHsfiYyuN/9PymMBWE=; b=b1dcF5m4UkShbP531M/RmDOtPB1p6P/UsjvyBjNaNmzgzXiVU3jFN8wi21GzNGn/Td kRM2FulRj1z06Tx7/quGplxLbwBfapuu+XbEKnxj1NI2YHnfvS+6aZ8vmyQVTIx+hu1t oEsaZnMfLbAdS67NEmCVY+8gtdOWR/W9+TJblyBBuKjxHz5KTAoa5KtFzTAZ5CJV5I+d w0Wiyq5BSifttxZSaJ9d+NvuHCLF+P2ZTGfFHx9Xrb3W13xQRj6nXOdp5TI0vYsfAUA/ NgBQSX6LC5ZQ4L9na2NXzdZX2wHt/yZeL6NVXe2erXPx1EW0o898mEHH6yWa4zpQw9D5 F9XQ== X-Gm-Message-State: ALoCoQngnKPM+eVPZ86IO4CRrY6XLZgVGXtyvA3uFdU5NLTNZAZb1NSF5jdUKFHAbMwdMFtIxJtJ X-Received: by 10.68.242.163 with SMTP id wr3mr23060587pbc.84.1387226514495; Mon, 16 Dec 2013 12:41:54 -0800 (PST) Message-ID: <52AF6590.9020802@topbug.net> Date: Mon, 16 Dec 2013 12:41:52 -0800 From: Hong Xu User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: zsh-users@zsh.org Subject: Pattern problem in the new zsh 5.0.3 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Hi all, After I upgraded to zsh 5.0.3, I found a few issues. It looks like they are both related to the glob pattern. 1. When I tried to use "git push origin " to perform autocompletion, the following error occurs: __git_complete_remote_or_refspec:33: bad pattern: +* __git_complete_remote_or_refspec:33: bad pattern: +* __git_complete_remote_or_refspec:33: bad pattern: +* 2. When I tried to use rvm (see https://github.com/wayneeseguin/rvm/issues/2431), something similar occurs: | __rvm_clean_path:12: bad pattern: *:/Users/hong/.rvm/gems/ruby-1.9.3-p448@global/bin:*| I'm not familiar with the rvm codebase, so I cannot afford any details on that. But my point is, it seems that something related to pattern has broken in the new version. Can anyone look into this, please? Thanks! Hong