[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[no subject]
- To: (BUG LISP) at MIT-MC
- From: KMP at MIT-MC (Kent M. Pitman)
- Date: Sat, 4 Nov 78 01:13:00 GMT
- Original-date: 3 NOV 1978 2013-EST
I am concerned by the following:
((LAMBDA (TIME DOW DATE) ...) (STATUS DAYTIME) (STATUS DOW) (STATUS DATE))
Is there a way in which I can get all three of those with some degree of
simultaneity? Eg, return
(STATUS TIMES) => (<dow> <yr> <mo> <day> <hr> <min> <sec>)
where <dow> was a number from 0 to 6, all others were like (STATUS DATE)
nconc'd to (STATUS DAYTIME) - This way you wouldn't get the screw of:
DOW => FRIDAY
TIME => (23. 59. 58.)
DATE => <the next date - Saturday>
if you got swapped out. If this ever happened, it could be very confusing.
--kmp