diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Completion/Unix/Command/_su | 1 |
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 |