aboutsummaryrefslogtreecommitdiff
path: root/src/interp/i-syscmd.boot.pamphlet
diff options
context:
space:
mode:
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