- added missing import into (ikarus foreign)

- fixed compiler bug in compiler (impose-evaluation-order was not
  stripping all annotations).
This commit is contained in:
Abdulaziz Ghuloum 2008-11-23 15:26:12 -05:00
parent b9519122fe
commit 5ba29fe3aa
3 changed files with 3 additions and 2 deletions

View File

@ -27,7 +27,7 @@
make-c-callout make-c-callback
pointer-size)
(import (ikarus system $foreign))
(import (ikarus) (ikarus system $foreign))
(define (pointer-size)
(cond

View File

@ -759,6 +759,7 @@
[(forcall) (VT x)]
[(shortcut body handler)
(make-shortcut (Tail body) (Tail handler))]
[(known x) (Tail x)]
[else (error who "invalid tail" x)]))
;;;
(define (formals-locations args)

View File

@ -1 +1 @@
1688
1690