aboutsummaryrefslogtreecommitdiff
path: root/src/interp/setvars.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2013-05-27 02:16:02 +0000
committerdos-reis <gdr@axiomatics.org>2013-05-27 02:16:02 +0000
commit12a60329bd490d63501651cb47c4b87f3ed9c2da (patch)
tree15dce46cd0c815a0f7a1137e1ff0fef39b40ea8e /src/interp/setvars.boot
parent5b90309d09bb9f9d17ff86f644994953ce94c0b3 (diff)
downloadopen-axiom-12a60329bd490d63501651cb47c4b87f3ed9c2da.tar.gz
Remove and .
Diffstat (limited to 'src/interp/setvars.boot')
-rw-r--r--src/interp/setvars.boot10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/interp/setvars.boot b/src/interp/setvars.boot
index 906f2248..b89a8798 100644
--- a/src/interp/setvars.boot
+++ b/src/interp/setvars.boot
@@ -1,6 +1,6 @@
-- Copyright (c) 1991-2002, The Numerical Algorithms Group Ltd.
-- All rights reserved.
--- Copyright (C) 2007-2012, Gabriel Dos Reis.
+-- Copyright (C) 2007-2013, Gabriel Dos Reis.
-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
@@ -925,7 +925,7 @@ setOutputAlgebra arg ==
fn := strconc(pathnameDirectory fn,pathnameName fn)
ft := ptype
if null fm then fm := 'A
- filename := $FILEP(fn,ft,fm)
+ filename := makeFullFilePath [fn,ft,fm]
null filename =>
sayKeyedMsg("S2IV0003",[fn,ft,fm])
(testStream := MAKE_-OUTSTREAM(filename,255,0)) =>
@@ -1122,7 +1122,7 @@ setOutputFortran arg ==
fn := strconc(pathnameDirectory fn,pathnameName fn)
ft := ptype
if null fm then fm := 'A
- filename := $FILEP(fn,ft,fm)
+ filename := makeFullFilePath [fn,ft,fm]
null filename => sayKeyedMsg("S2IV0003",[fn,ft,fm])
(testStream := makeStream(append,filename,255,0)) =>
SHUT $fortranOutputStream
@@ -1232,7 +1232,7 @@ setOutputMathml arg ==
fn := strconc(pathnameDirectory fn,pathnameName fn)
ft := ptype
if null fm then fm := 'A
- filename := $FILEP(fn,ft,fm)
+ filename := makeFullFilePath [fn,ft,fm]
null filename =>
sayKeyedMsg("S2IV0003",[fn,ft,fm])
(testStream := MAKE_-OUTSTREAM(filename,255,0)) =>
@@ -1342,7 +1342,7 @@ setOutputTex arg ==
fn := strconc(pathnameDirectory fn,pathnameName fn)
ft := ptype
if null fm then fm := 'A
- filename := $FILEP(fn,ft,fm)
+ filename := makeFullFilePath [fn,ft,fm]
null filename =>
sayKeyedMsg("S2IV0003",[fn,ft,fm])
(testStream := MAKE_-OUTSTREAM(filename,255,0)) =>