aboutsummaryrefslogtreecommitdiff
path: root/src/interp/i-syscmd.boot
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2008-08-11 23:39:57 +0000
committerdos-reis <gdr@axiomatics.org>2008-08-11 23:39:57 +0000
commit9db6b61081ac23786139c664988260b81195378e (patch)
tree5f0333cc5aa17be7576ff293031270c2dac55b62 /src/interp/i-syscmd.boot
parent8a33c76f87483d4b01e666c0013e21b3cf3b7266 (diff)
downloadopen-axiom-9db6b61081ac23786139c664988260b81195378e.tar.gz
* interp/obey.lisp: Remove.
* interp/Makefile.pamphlet (OBJS): Don't include obey.$(FASLEXT). * interp/br-data.boot: Replace OBEY with runCommand. * interp/br-saturn.boot: Likewise. * interp/br-search.boot: Likewise. * interp/c-doc.boot: Likewise. * interp/compat.boot: Likewise. * interp/debug.lisp: Likewise. * interp/g-util.boot: Likewise. * interp/ht-root.boot: Likewise. * interp/i-syscmd.boot: Likewise. * interp/patches.lisp: Likewise. * interp/spad.lisp: Likewise. * interp/util.lisp: Likewise. * interp/vmlisp.lisp: Likewise.
Diffstat (limited to 'src/interp/i-syscmd.boot')
-rw-r--r--src/interp/i-syscmd.boot12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/interp/i-syscmd.boot b/src/interp/i-syscmd.boot
index 2904c5e9..9c921167 100644
--- a/src/interp/i-syscmd.boot
+++ b/src/interp/i-syscmd.boot
@@ -591,7 +591,7 @@ compileAsharpCmd1 args ==
command :=
STRCONC(STRCONC(GETENV('"ALDORROOT"),'"/bin/"),_
"aldor ", asharpArgs, '" ", namestring args)
- rc := OBEY command
+ rc := runCommand command
if (rc = 0) and doCompileLisp then
lsp := fnameMake('".", pathnameName args, '"lsp")
@@ -644,7 +644,7 @@ compileAsharpArchiveCmd args ==
cd [ object2Identifier namestring dir ]
cmd := STRCONC( '"ar x ", namestring path )
- rc := OBEY cmd
+ rc := runCommand cmd
rc ^= 0 =>
cd [ object2Identifier namestring curDir ]
throwKeyedMsg("S2IL0028",[namestring dir, namestring args])
@@ -766,10 +766,10 @@ withAsharpCmd args ==
--% )copyright -- display copyright notice
summary l ==
- OBEY STRCONC ('"cat ", systemRootDirectory(),'"/lib/summary")
+ runCommand STRCONC ('"cat ", systemRootDirectory(),'"/lib/summary")
copyright () ==
- OBEY STRCONC ('"cat ", systemRootDirectory(),'"/lib/copyright")
+ runCommand STRCONC ('"cat ", systemRootDirectory(),'"/lib/copyright")
--% )credits -- display credit list
@@ -1172,7 +1172,7 @@ newHelpSpad2Cmd args ==
null (helpFile := MAKE_-INPUT_-FILENAME [narg,'HELPSPAD,'_*]) => NIL
$useFullScreenHelp =>
- OBEY STRCONC('"$AXIOM/lib/SPADEDIT ",namestring helpFile)
+ runCommand STRCONC('"$AXIOM/lib/SPADEDIT ",namestring helpFile)
true
filestream := MAKE_-INSTREAM(helpFile)
@@ -3053,7 +3053,7 @@ npsystem(unab, str) ==
null SEARCH(sysPart, STRING unab) =>
sayKeyedMsg('"S2IZ0080", [sysPart])
command := SUBSEQ(str, spaceIndex+1)
- OBEY command
+ runCommand command
npsynonym(unab, str) ==
npProcessSynonym(str)