mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-15 16:57:35 +02:00
Fix extraction of options
This commit is contained in:
parent
2a91c9431e
commit
2c418ec33d
1 changed files with 2 additions and 2 deletions
|
@ -1716,8 +1716,8 @@
|
||||||
)
|
)
|
||||||
|
|
||||||
;; Memoize pure functions, if instructed
|
;; Memoize pure functions, if instructed
|
||||||
(let ((module-globals-pair (assoc 'module-globals options)))
|
(let ((module-globals-pair (assoc 'module-globals (car options))))
|
||||||
(when (and module-globals-pair #t ;; TODO: (assoc 'memoize-pure-functions options)
|
(when (and module-globals-pair #t ;; TODO: (assoc 'memoize-pure-functions (car options))
|
||||||
)
|
)
|
||||||
(set! new-ast (opt:memoize-pure-fncs new-ast (cdr module-globals-pair))))
|
(set! new-ast (opt:memoize-pure-fncs new-ast (cdr module-globals-pair))))
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue