You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Jan 14, 2025, at 12:23 PM, Matt Heffron ***@***.***> wrote:
GREET just wished me "Happy Valentine's Day" a month early!
GREETDATES correctly has Valentines Day as "14-FEB".
In GREET0 it is using
(CL:MULTIPLE-VALUE-BIND (SECONDS MINUTES HOUR DAY MONTH YEAR)
(CL:GET-DECODED-TIME)
to get the parts of the date, and then constructing the day-month string to SASSOC into GREETDATES
However, it is using
(CL:NTH MONTH '("JAN" "FEB" "MAR" ; etc
to get the month text, but CL:NTH is zero-based, so MONTH = 1 gets "FEB"
—
Reply to this email directly, view it on GitHub <#1968>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AQSTUJJMWWXUY4EOAFVQ7R32KVW43AVCNFSM6AAAAABVFWS3NWVHI2DSMVQWIX3LMV43ASLTON2WKOZSG44DQMRRGI2DCMQ>.
You are receiving this because you are subscribed to this thread.
GREET
just wished me "Happy Valentine's Day" a month early!GREETDATES
correctly has Valentines Day as "14-FEB".In
GREET0
it is usingto get the parts of the date, and then constructing the day-month string to
SASSOC
intoGREETDATES
However, it is using
to get the month text, but
CL:NTH
is zero-based, soMONTH
= 1 gets "FEB"The text was updated successfully, but these errors were encountered: