summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/ASM/Event.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ASM/Event.pm b/lib/ASM/Event.pm
index b5fbc6e..4dffc74 100644
--- a/lib/ASM/Event.pm
+++ b/lib/ASM/Event.pm
@@ -430,12 +430,12 @@ sub parse_modes
if (($c eq '-') || ($c eq '+')) {
$t=$c;
}
- else { #eIbq,k,flj,CFLMPQScgimnprstz
+ else { #eIbq,k,flj,CFLMPQScgimnprstuz
if ($t eq '+') {
if ( grep( /[eIbqkfljov]/,($c) ) ) { #modes that take args WHEN BEING ADDED
push (@new_modes, [$t.$c, shift @args]);
}
- elsif ( grep( /[CFLMPQScgimnprstz]/, ($c) ) ) {
+ elsif ( grep( /[CFLMPQScgimnprstuz]/, ($c) ) ) {
push (@new_modes, [$t.$c]);
}
else {
@@ -445,7 +445,7 @@ sub parse_modes
if ( grep( /[eIbqov]/,($c) ) ) { #modes that take args WHEN BEING REMOVED
push (@new_modes, [$t.$c, shift @args]);
}
- elsif ( grep( /[CFLMPQScgimnprstzkflj]/, ($c) ) ) {
+ elsif ( grep( /[CFLMPQScgimnprstuzkflj]/, ($c) ) ) {
push (@new_modes, [$t.$c]);
}
else {