Fix date parsing
This commit is contained in:
@ -200,7 +200,10 @@ least one range given will match (that is, the union of all given dates).~%"))
|
|||||||
when (and s e)
|
when (and s e)
|
||||||
collect (subseq string s e)
|
collect (subseq string s e)
|
||||||
else
|
else
|
||||||
collect nil))))))))
|
collect nil)))))))
|
||||||
|
;; we call return-from above, so this will only run if all know patterns fail
|
||||||
|
;; to match
|
||||||
|
(error "Invalid date string: ~S" string))
|
||||||
|
|
||||||
(defun parse-date-range (string)
|
(defun parse-date-range (string)
|
||||||
"Parse a date range from STRING."
|
"Parse a date range from STRING."
|
||||||
|
|||||||
Reference in New Issue
Block a user