about summary refs log tree commit diff
path: root/Completion/Unix/Command/_rm
diff options
context:
space:
mode:
authorOliver Kiddle <opk@zsh.org>2016-09-07 23:33:42 +0200
committerOliver Kiddle <opk@zsh.org>2016-09-07 23:33:42 +0200
commit7d98ac7cd509ffc8221bb46323c040421347a3f3 (patch)
tree72b54c2efa8b8aa76a66283fd502677d84c27c24 /Completion/Unix/Command/_rm
parent1fe962cbfdd82b2528d1214e997d229a96a6ddb9 (diff)
downloadzsh-7d98ac7cd509ffc8221bb46323c040421347a3f3.tar.gz
zsh-7d98ac7cd509ffc8221bb46323c040421347a3f3.tar.xz
zsh-7d98ac7cd509ffc8221bb46323c040421347a3f3.zip
unposted: fix to use ;| style fall-throughs in the case statement
Diffstat (limited to 'Completion/Unix/Command/_rm')
-rw-r--r--Completion/Unix/Command/_rm4
1 files changed, 2 insertions, 2 deletions
diff --git a/Completion/Unix/Command/_rm b/Completion/Unix/Command/_rm
index 4a5c9a178..6d728b157 100644
--- a/Completion/Unix/Command/_rm
+++ b/Completion/Unix/Command/_rm
@@ -29,14 +29,14 @@ else
         '-d[remove directories as well]'
         '-P[overwrite files before deleting them]'
       )
-    ;;
+    ;|
     dragonfly*|freebsd*|netbsd*)
       args+=(
         '-v[explain what is being done]'
         '-W[attempt to undelete named files]'
         "-x[don't cross file systems when removing a hierarchy]"
       )
-    ;;
+    ;|
     dragonfly*|freebsd*)
       args+=(
         '(-i)-I[prompt when removing many files]'