diff options
author | dos-reis <gdr@axiomatics.org> | 2013-05-27 02:16:02 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2013-05-27 02:16:02 +0000 |
commit | 12a60329bd490d63501651cb47c4b87f3ed9c2da (patch) | |
tree | 15dce46cd0c815a0f7a1137e1ff0fef39b40ea8e /src/interp | |
parent | 5b90309d09bb9f9d17ff86f644994953ce94c0b3 (diff) | |
download | open-axiom-12a60329bd490d63501651cb47c4b87f3ed9c2da.tar.gz |
Remove and .
Diffstat (limited to 'src/interp')
-rw-r--r-- | src/interp/lisplib.boot | 4 | ||||
-rw-r--r-- | src/interp/nlib.lisp | 5 | ||||
-rw-r--r-- | src/interp/setvars.boot | 10 |
3 files changed, 8 insertions, 11 deletions
diff --git a/src/interp/lisplib.boot b/src/interp/lisplib.boot index f408b418..b2bbffe2 100644 --- a/src/interp/lisplib.boot +++ b/src/interp/lisplib.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 @@ -442,7 +442,7 @@ compDefineLisplib(df:=["DEF",[op,:.],:.],m,e,fal,fn) == ok := finalizeLisplib(db,libName) finally RSHUT $libFile if ok then lisplibDoRename(libName) - filearg := $FILEP(libName,$spadLibFT,$libraryDirectory) + filearg := makeFullFilePath [libName,$spadLibFT,$libraryDirectory] RPACKFILE filearg freshLine $algebraOutputStream sayMSG fillerSpaces(72,char "-") diff --git a/src/interp/nlib.lisp b/src/interp/nlib.lisp index f990c2c5..770c6ada 100644 --- a/src/interp/nlib.lisp +++ b/src/interp/nlib.lisp @@ -248,7 +248,7 @@ (cons cd $library-directory-list) $library-directory-list)) (t (adjoin cd - (adjoin (namestring (user-homedir-pathname)) + (adjoin (namestring (|userHomeDirectory|)) $directory-list :test #'string=) :test #'string=))))) @@ -267,9 +267,6 @@ (return newfn))) (|probeReadableFile| filename)))) -(defun $FILEP (&rest filearg) (|makeFullFilePath| filearg)) -(define-function '$OUTFILEP #'$FILEP) ;;temporary bogus def - (defun $findfile (filespec filetypelist) (let ((file-name (if (consp filespec) (car filespec) filespec)) (file-type (if (consp filespec) (cadr filespec) nil))) 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)) => |