From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19252 invoked from network); 4 Jun 1999 09:49:01 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 4 Jun 1999 09:49:01 -0000 Received: (qmail 9006 invoked by alias); 4 Jun 1999 09:48:53 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 6458 Received: (qmail 8999 invoked from network); 4 Jun 1999 09:48:53 -0000 Date: Fri, 4 Jun 1999 11:48:50 +0200 (MET DST) Message-Id: <199906040948.LAA03209@beta.informatik.hu-berlin.de> From: Sven Wischnowsky To: zsh-workers@sunsite.auc.dk In-reply-to: Peter Stephenson's message of Thu, 03 Jun 1999 16:08:48 +0200 Subject: Re: MAIL, MAILPATH and maildir support Peter Stephenson wrote: > A module with more powerful mail commands is a reasonable idea, but I have > some reservations. First, if this is going to be a largish add-on, basic > UNIX mail-file checking (as it currently exists) should probably stay in > the basic shell, since pretty much everybody (? I presume) uses that Err... ahem. I always feared that I'm not normal. > --- maybe (ms???) should work too, but it doesn't at the moment); Now that's a weird omission. Why didn't I... (computers were slower at that time, but...) Bye Sven --- os/glob.c Tue Jun 1 11:28:26 1999 +++ Src/glob.c Fri Jun 4 11:40:04 1999 @@ -97,6 +97,7 @@ #define TT_MINS 2 #define TT_WEEKS 3 #define TT_MONTHS 4 +#define TT_SECONDS 5 #define TT_BYTES 0 #define TT_POSIX_BLOCKS 1 @@ -1615,6 +1616,8 @@ units = TT_WEEKS, ++s; else if (*s == 'M') units = TT_MONTHS, ++s; + else if (*s == 's') + units = TT_SECONDS, ++s; } /* See if it's greater than, equal to, or less than */ if ((range = *s == '+' ? 1 : *s == '-' ? -1 : 0)) -- Sven Wischnowsky wischnow@informatik.hu-berlin.de