aboutsummaryrefslogtreecommitdiff
path: root/src/interp/fortcall.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2010-05-09 16:34:01 +0000
committerdos-reis <gdr@axiomatics.org>2010-05-09 16:34:01 +0000
commitfe4b74b0a56bc60835a7f4e7f6344f7ceea0b0b6 (patch)
treee04fba9d297f0f414733a2b3089380d715c0e8bf /src/interp/fortcall.boot
parentb248654cba0d6c5ae213882837140358f92bab1c (diff)
downloadopen-axiom-fe4b74b0a56bc60835a7f4e7f6344f7ceea0b0b6.tar.gz
* interp/bc-solve.boot: Move cleanup.
* interp/br-con.boot: Likewise. * interp/br-op1.boot: Likewise. * interp/br-saturn.boot: Likewise. * interp/br-search.boot: Likewise. * interp/br-util.boot: Likewise. * interp/c-util.boot: Likewise. * interp/cattable.boot: Likewise. * interp/cparse.boot: Likewise. * interp/cstream.boot: Likewise. * interp/fortcall.boot: Likewise. * interp/g-timer.boot: Likewise. * interp/ht-util.boot: Likewise. * interp/htcheck.boot: Likewise. * interp/htsetvar.boot: Likewise. * interp/i-map.boot: Likewise. * interp/i-output.boot: Likewise. * interp/i-syscmd.boot: Likewise. * interp/i-toplev.boot: Likewise. * interp/i-util.boot: Likewise. * interp/incl.boot: Likewise. * interp/int-top.boot: Likewise. * interp/interop.boot: Likewise. * interp/intfile.boot: Likewise. * interp/lisplib.boot: Likewise. * interp/macex.boot: Likewise. * interp/msgdb.boot: Likewise. * interp/newfort.boot: Likewise. * interp/nrunfast.boot: Likewise. * interp/nrungo.boot: Likewise. * interp/pathname.boot: Likewise. * interp/profile.boot: Likewise. * interp/pspad1.boot: Likewise. * interp/ptrees.boot: Likewise. * interp/scan.boot: Likewise. * interp/sys-os.boot: Likewise. * interp/sys-utility.boot: Likewise. * interp/wi1.boot: Likewise.
Diffstat (limited to 'src/interp/fortcall.boot')
-rw-r--r--src/interp/fortcall.boot4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/fortcall.boot b/src/interp/fortcall.boot
index 8eb93631..b464093f 100644
--- a/src/interp/fortcall.boot
+++ b/src/interp/fortcall.boot
@@ -571,12 +571,12 @@ prepareResults(results,args,dummies,values,decls) ==
LISTP(type) and first(type)="character" => MAKE_-STRING(1)
LISTP(type) and first(type) in ["complex","double complex"] =>
makeVector( makeList(
- 2*APPLY('_*,[getVal(tt,argNames,actual) for tt in rest(type)]),_
+ 2*apply('_*,[getVal(tt,argNames,actual) for tt in rest(type)]),_
if first(type)="complex" then shortZero else longZero),_
if first(type)="complex" then "%SingleFloat" else "%DoubleFloat" )
LISTP type => makeVector(_
makeList(
- APPLY('_*,[getVal(tt,argNames,actual) for tt in rest(type)]),_
+ apply('_*,[getVal(tt,argNames,actual) for tt in rest(type)]),_
defaultValue(first type,argNames,actual)),_
checkForBoolean lispType first(type) )
type = "integer" => 0