aboutsummaryrefslogtreecommitdiff
path: root/src/interp/i-syscmd.boot.pamphlet
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2007-10-22 10:25:52 +0000
committerdos-reis <gdr@axiomatics.org>2007-10-22 10:25:52 +0000
commita73349338f650dea30da980fe22e5c750884cc85 (patch)
tree4d1c8e72e7be5d02c9be0c490a8c5a5817d585ef /src/interp/i-syscmd.boot.pamphlet
parent2ff38e852893972f6d8000a70bb4a359fb7e44df (diff)
downloadopen-axiom-a73349338f650dea30da980fe22e5c750884cc85.tar.gz
* br-data.boot.pamphlet (getImports): Rename `import' to `doImport'.
* define.boot.pamphlet (hasSigInTargetCategory): Pretty-print signature in diagnostics. * i-syscmd.boot.pamphlet: Fix syntax. * mark.boot: Likewise.
Diffstat (limited to 'src/interp/i-syscmd.boot.pamphlet')
-rw-r--r--src/interp/i-syscmd.boot.pamphlet10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/interp/i-syscmd.boot.pamphlet b/src/interp/i-syscmd.boot.pamphlet
index 369ef713..8bffe842 100644
--- a/src/interp/i-syscmd.boot.pamphlet
+++ b/src/interp/i-syscmd.boot.pamphlet
@@ -1224,13 +1224,13 @@ frameSpad2Cmd args ==
arg = 'drop =>
args and PAIRP(args) => throwKeyedMsg("S2IZ0017",[args])
closeInterpreterFrame(args)
- arg = 'import => importFromFrame args
- arg = 'last => previousInterpreterFrame()
- arg = 'names => displayFrameNames()
- arg = 'new =>
+ arg = "import" => importFromFrame args
+ arg = "last" => previousInterpreterFrame()
+ arg = "names" => displayFrameNames()
+ arg = "new" =>
args and PAIRP(args) => throwKeyedMsg("S2IZ0017",[args])
addNewInterpreterFrame(args)
- arg = 'next => nextInterpreterFrame()
+ arg = "next" => nextInterpreterFrame()
NIL