From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6730 invoked from network); 3 Mar 2009 09:42:33 -0000 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=AWL,BAYES_00 autolearn=ham version=3.2.5 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 3 Mar 2009 09:42:33 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 20445 invoked from network); 3 Mar 2009 09:42:27 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 3 Mar 2009 09:42:27 -0000 Received: (qmail 7053 invoked by alias); 3 Mar 2009 09:42:22 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 26667 Received: (qmail 7040 invoked from network); 3 Mar 2009 09:42:22 -0000 Received: from bifrost.dotsrc.org (130.225.254.106) by sunsite.dk with SMTP; 3 Mar 2009 09:42:22 -0000 Received: from rcpt-expgw.biglobe.ne.jp (rcpt-expgw.biglobe.ne.jp [133.205.19.65]) by bifrost.dotsrc.org (Postfix) with ESMTP id D0A488058F82 for ; Tue, 3 Mar 2009 10:42:07 +0100 (CET) Received: from vc-gw.biglobe.ne.jp by rcpt-expgw.biglobe.ne.jp (kbkr/0208160408) with SMTP id n239g6ds015668 for ; Tue, 3 Mar 2009 18:42:06 +0900 Received: from smtp-gw.biglobe.ne.jp ([172.21.175.149]) by vc-gw.biglobe.ne.jp (kbkr/0716090908) with ESMTP id n239g6WM010684 for ; Tue, 3 Mar 2009 18:42:06 +0900 X-Biglobe-Sender: Received: from [133.24.84.100] (133.24.84.100 [133.24.84.100]) by smtp-gw.biglobe.ne.jp id SADDAC15AFD5; Tue, 03 Mar 2009 18:42:05 +0900 (JST) Mime-Version: 1.0 X-Mailer: QUALCOMM MacOS X Eudora Version 6.2J rev3.3 Message-Id: In-Reply-To: <20090226171549.209b2e0d@news01> References: <10366.1235663566@csr.com><20090226163512.GA5181@sc.homeunix.net> <20090226171549.209b2e0d@news01> Date: Tue, 3 Mar 2009 18:42:03 +0900 To: zsh-workers@sunsite.dk From: "Jun T." Subject: Re: PATCH: add -t option to history Content-Type: text/plain; charset="us-ascii" X-Virus-Scanned: ClamAV 0.92.1/9062/Tue Mar 3 05:42:20 2009 on bifrost X-Virus-Status: Clean At 17:15 +0000 09.2.26, Peter Stephenson wrote: >Index: Doc/Zsh/prompt.yo >=================================================================== ... >+characters are provided to tt(strftime()) with any leading `tt(-)', It seems this causes the following error during making zshmisc.1 prompt.yo:191: No macro: strftime(...) The following will fix this, but I'm not familiar with yodl and not sure whether this is the best fix. Index: Doc/Zsh/prompt.yo =================================================================== RCS file: /cvsroot/zsh/zsh/Doc/Zsh/prompt.yo,v retrieving revision 1.17 diff -u -r1.17 prompt.yo --- Doc/Zsh/prompt.yo 2 Mar 2009 10:12:15 -0000 1.17 +++ Doc/Zsh/prompt.yo 3 Mar 2009 09:38:49 -0000 @@ -185,7 +185,7 @@ format character causes a leading zero or space to be stripped is handled directly by the shell for the format characters tt(d), tt(f), tt(H), tt(k), tt(l), tt(m), tt(M), tt(S) and tt(y); any other format -characters are provided to tt(strftime()) with any leading `tt(-)', +characters are provided to tt(strftime+LPAR()RPAR()) with any leading `tt(-)', present, so the handling is system dependent. Further GNU extensions are not supported at present. )