From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21471 invoked by alias); 8 Jul 2015 14:35:59 -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: 35732 Received: (qmail 22765 invoked from network); 8 Jul 2015 14:35:55 -0000 X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.0 X-Biglobe-Sender: Content-Type: text/plain; charset=us-ascii Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\)) Subject: Re: PATCH: _ps1234, _date_formats: Complete strftime formats for %D{} From: "Jun T." In-Reply-To: <4740.1436181110@thecus.kiddle.eu> Date: Wed, 8 Jul 2015 23:02:40 +0900 Content-Transfer-Encoding: 7bit Message-Id: <97E3F4A3-6951-4848-8711-B8BD609BA79D@kba.biglobe.ne.jp> References: <1436143012-9243-1-git-send-email-mikachu@gmail.com> <4740.1436181110@thecus.kiddle.eu> To: zsh-workers@zsh.org X-Mailer: Apple Mail (2.1878.6) X-Biglobe-Spnum: 50716 2015/07/06 20:11, Oliver Kiddle wrote: > +exclusion=( > + 'E' '[-_^#cCgGxXyY]' > + 'O' '[-_^#BdeHImMSuUVwWy]' man strftime(3) says: Between the '%' character and the conversion specifier character, an optional flag and field width may be specified. (These precede the E or O modifiers, if present.) Here, the flag is one of - _ 0 ^ #. So Isn't it better to omit the flags - _ ^ # from the exclusion above?