mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
Cleanup
This commit is contained in:
parent
4b7f2cba63
commit
f61ba6ee4a
1 changed files with 2 additions and 2 deletions
|
@ -765,7 +765,7 @@
|
|||
result)))
|
||||
|
||||
(define (parse2 fp)
|
||||
(let ((token (read-token fp))) ;; TODO: this will be a C call
|
||||
(let ((token (read-token fp)))
|
||||
;(write `(token ,token))
|
||||
(cond
|
||||
((Cyc-opaque? token)
|
||||
|
@ -791,7 +791,7 @@
|
|||
((Cyc-opaque-unsafe-eq? token #\,)
|
||||
(list 'unquote (parse2 fp)))
|
||||
(else
|
||||
token))) ;; TODO: error if this is returned to original caller of parse2
|
||||
token))) ;; error if this is returned to original caller of parse2
|
||||
((vector? token)
|
||||
(cond
|
||||
((= (vector-length token) 2) ;; Special case: number
|
||||
|
|
Loading…
Add table
Reference in a new issue