1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

comment in fix-letrec

* module/language/tree-il/fix-letrec.scm (simple-expression?): Add a
  small FIXME.
This commit is contained in:
Andy Wingo 2010-06-11 16:56:56 +02:00
parent d71cc612c3
commit 322a36ce9f

View file

@ -47,6 +47,7 @@
((<application> proc args)
(and (primitive-ref? proc)
(effect-free-primitive? (primitive-ref-name proc))
;; FIXME: check arity?
(and-map (lambda (x) (simple-expression? x bound-vars))
args)))
(else #f)))