mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-04 11:46:35 +02:00
Temporarily enable code that generates a compiler error
This commit is contained in:
parent
ba3b016c43
commit
142dbc3fb4
1 changed files with 7 additions and 5 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue