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/spad.lisp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/interp/spad.lisp') diff --git a/src/interp/spad.lisp b/src/interp/spad.lisp index 8967781b..914bb45d 100644 --- a/src/interp/spad.lisp +++ b/src/interp/spad.lisp @@ -171,10 +171,10 @@ ; SYSTEM COMMANDS ;************************************************************************ -(defun CLEARDATABASE () (OBEY "ERASE MODEMAP DATABASE")) +(defun CLEARDATABASE () (|runCommand| "ERASE MODEMAP DATABASE")) (defun erase (FN FT) - (OBEY (STRCONC "ERASE " (STRINGIMAGE FN) " " (STRINGIMAGE FT)))) + (|runCommand| (STRCONC "ERASE " (STRINGIMAGE FN) " " (STRINGIMAGE FT)))) (defun READLISP (UPPER_CASE_FG) (let (v expr val ) @@ -220,7 +220,7 @@ (|terminateSystemCommand|) (|spadPrompt|)) -(defun CPSAY (X) (let (n) (if (EQ 0 (setq N (OBEY X))) NIL (PRINT N)))) +(defun CPSAY (X) (let (n) (if (EQ 0 (setq N (|runCommand| X))) NIL (PRINT N)))) (defun |fin| () (SETQ *EOF* 'T) -- cgit v1.2.3