From 3ebf9f11dd85dd3f712c9423cc1b89eba591fea0 Mon Sep 17 00:00:00 2001 From: David Schmenk Date: Mon, 7 Jul 2014 22:18:42 -0700 Subject: [PATCH] Use new when/is/otherwise with break --- Platform/Apple/tools/PLASMA/src/cmd.pla | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Platform/Apple/tools/PLASMA/src/cmd.pla b/Platform/Apple/tools/PLASMA/src/cmd.pla index e6f9a232..0dc4a51d 100644 --- a/Platform/Apple/tools/PLASMA/src/cmd.pla +++ b/Platform/Apple/tools/PLASMA/src/cmd.pla @@ -1278,16 +1278,22 @@ while 1 when toupper(parsecmd(cmdptr)) is 'Q' reboot() + break is 'C' catalog(cmdptr) + break is 'P' setpfx(cmdptr) + break is 'V' - volumes(); + volumes() + break is '-' execsys(cmdptr) + break is '+' execmod(cmdptr) + break otherwise prstr(@huhstr) wend