about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@gmail.com>2014-10-24 08:55:26 +0200
committerMikael Magnusson <mikachu@gmail.com>2014-10-24 08:56:31 +0200
commit242b419fbc35b7807207e899e8275e0089d48121 (patch)
tree24fce426194771de46cc2a11d052b41ad1170d7f
parent746b53d5d7792ebb63b638116973f32fc492787a (diff)
downloadzsh-242b419fbc35b7807207e899e8275e0089d48121.tar.gz
zsh-242b419fbc35b7807207e899e8275e0089d48121.tar.xz
zsh-242b419fbc35b7807207e899e8275e0089d48121.zip
33485: fix a missing ;; case terminator
-rw-r--r--ChangeLog5
-rw-r--r--Completion/Unix/Command/_su1
2 files changed, 6 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 970c45edc..7deab9a57 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2014-10-24  Mikael Magnusson  <mikachu@gmail.com>
+
+	* 33485: Completion/Unix/Command/_su: fix a missing ;; case
+	terminator
+
 2014-10-23  Oliver Kiddle  <opk@zsh.org>
 
 	* 33520: Src/Zle/zle_vi.c, Test/X02zlevi.ztst: correct cursor
diff --git a/Completion/Unix/Command/_su b/Completion/Unix/Command/_su
index 9d3f28066..057a41371 100644
--- a/Completion/Unix/Command/_su
+++ b/Completion/Unix/Command/_su
@@ -32,6 +32,7 @@ else
       '-m[do not reset environment]'
       '-s[set the MAC label]'
     )
+  ;;
   *) args+=( '-c[pass command to shell]:command string:->command' ) ;;
   esac
 fi