From 9db6b61081ac23786139c664988260b81195378e Mon Sep 17 00:00:00 2001 From: dos-reis Date: Mon, 11 Aug 2008 23:39:57 +0000 Subject: * 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. --- src/interp/i-syscmd.boot | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/interp/i-syscmd.boot') 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) -- cgit v1.2.3