Temporarily enable code that generates a compiler error

This commit is contained in:
Justin Ethier 2018-02-01 13:38:57 -05:00
parent ba3b016c43
commit 142dbc3fb4

View file

@ -95,11 +95,13 @@
(match
lst
;(() 0)
(((? number? n) (or 's 'seconds 'sec) . rest)
(+ 0 (* #e1 n) (calc-time rest)))
; ;; TODO: interesting compiler error with these lines:
; (((? number? n) (or 's 'seconds 'sec) ) ;. rest)
; (+ (* #e1 n) )) ;(calc-time rest)))
;; Temporarily commenting these 2 lines out to track down compiler error with the next:
; (((? number? n) (or 's 'seconds 'sec) . rest)
; (+ 0 (* #e1 n) (calc-time rest)))
;; TODO: interesting compiler error with these lines:
(((? number? n) (or 's 'seconds 'sec) ) ;. rest)
(+ (* #e1 n) )) ;(calc-time rest)))
;;
(((? number? n) (or 'm 'min 'minutes) . rest)
(+ (* #e60 n) (calc-time rest)))
(((? number? n) (or 'hours 'h) . rest)