aboutsummaryrefslogtreecommitdiff
path: root/src/interp/fortcall.boot
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/fortcall.boot')
-rw-r--r--src/interp/fortcall.boot5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/interp/fortcall.boot b/src/interp/fortcall.boot
index 8184539d..a906d3b8 100644
--- a/src/interp/fortcall.boot
+++ b/src/interp/fortcall.boot
@@ -39,11 +39,10 @@ namespace BOOT
$nagMessages := nil
makeVector(elts, t) ==
- MAKE_-ARRAY(#elts, KEYWORD::ELEMENT_-TYPE, t or true,
- KEYWORD::INITIAL_-CONTENTS, elts)
+ MAKE_-ARRAY(#elts, element_-type <- t or true, initial_-contents <- elts)
makeList(n, e) ==
- MAKE_-LIST(n, KEYWORD::INITIAL_-ELEMENT, e)
+ MAKE_-LIST(n, initial_-element <- e)
makeFort(name,args,decls,results,returnType,aspInfo) ==
-- Create an executable Fortran file to call a given library function,