[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[no subject]



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