diff options
author | Wayne Davison <wayned@users.sourceforge.net> | 2004-11-11 19:05:25 +0000 |
---|---|---|
committer | Wayne Davison <wayned@users.sourceforge.net> | 2004-11-11 19:05:25 +0000 |
commit | e4ba1a2ec8cd6b73d6e931e00e4a5d16e131a473 (patch) | |
tree | eb3590221bb72dadea55977cd52ce5bc54b3f877 /Completion/Unix | |
parent | 54a5fb7d8b7cc5488061bf7e712f8abcc810ec71 (diff) | |
download | zsh-e4ba1a2ec8cd6b73d6e931e00e4a5d16e131a473.tar.gz zsh-e4ba1a2ec8cd6b73d6e931e00e4a5d16e131a473.tar.xz zsh-e4ba1a2ec8cd6b73d6e931e00e4a5d16e131a473.zip |
Use ";&" to have the new "(\$*)" case fall through to the continue.
Diffstat (limited to 'Completion/Unix')
-rw-r--r-- | Completion/Unix/Command/_make | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_make b/Completion/Unix/Command/_make index 28dc25f74..fca75b6a5 100644 --- a/Completion/Unix/Command/_make +++ b/Completion/Unix/Command/_make @@ -25,7 +25,7 @@ expandVars() { (\$*) # avoid parsing second $ in $$ tmp=${tmp#\$} - continue + ;& (*) continue ;; |