diff options
author | Wayne Davison <wayned@users.sourceforge.net> | 2005-03-02 19:06:23 +0000 |
---|---|---|
committer | Wayne Davison <wayned@users.sourceforge.net> | 2005-03-02 19:06:23 +0000 |
commit | dca8aa342a46d6e58777a5b58d41996fea54954a (patch) | |
tree | d28fe4c6b25e930c84486f7a3f7cd0f9d1817106 /Completion/Unix/Command/_make | |
parent | 4a007b41d748f1e6b7810ffe74d100981b8f08fc (diff) | |
download | zsh-dca8aa342a46d6e58777a5b58d41996fea54954a.tar.gz zsh-dca8aa342a46d6e58777a5b58d41996fea54954a.tar.xz zsh-dca8aa342a46d6e58777a5b58d41996fea54954a.zip |
Don't try to expand a single-character Makefile variable if
it is a digit.
Diffstat (limited to 'Completion/Unix/Command/_make')
-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 fca75b6a5..3b0bc2476 100644 --- a/Completion/Unix/Command/_make +++ b/Completion/Unix/Command/_make @@ -17,7 +17,7 @@ expandVars() { open='{' close='}' ;; - ([[:alnum:]]*) + ([[:alpha:]]*) open='' close='' var=${(s::)var[1]} |