diff options
| author | Oliver Kiddle <opk@zsh.org> | 2021-10-30 23:27:29 +0200 |
|---|---|---|
| committer | Oliver Kiddle <opk@zsh.org> | 2021-10-30 23:35:04 +0200 |
| commit | 632fee7cdfcd234a5c7c53f17777ca18e62d82e3 (patch) | |
| tree | fca80472477f8a5a3ba75ab23e273d418decebb0 /Src/Zle/comp.h | |
| parent | unposted (c.f. Bart: 49531): fix completion test where a typo marked it as ex... (diff) | |
| download | zsh-632fee7cdfcd234a5c7c53f17777ca18e62d82e3.tar zsh-632fee7cdfcd234a5c7c53f17777ca18e62d82e3.tar.gz zsh-632fee7cdfcd234a5c7c53f17777ca18e62d82e3.tar.bz2 zsh-632fee7cdfcd234a5c7c53f17777ca18e62d82e3.tar.lz zsh-632fee7cdfcd234a5c7c53f17777ca18e62d82e3.tar.xz zsh-632fee7cdfcd234a5c7c53f17777ca18e62d82e3.tar.zst zsh-632fee7cdfcd234a5c7c53f17777ca18e62d82e3.zip | |
49528: allow multiple -D options to compadd
Diffstat (limited to 'Src/Zle/comp.h')
| -rw-r--r-- | Src/Zle/comp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Zle/comp.h b/Src/Zle/comp.h index 2e3249b52..0c5fbd4f0 100644 --- a/Src/Zle/comp.h +++ b/Src/Zle/comp.h @@ -329,7 +329,7 @@ struct cadata { char *exp; /* explanation (-X) */ char *apar; /* array to store matches in (-A) */ char *opar; /* array to store originals in (-O) */ - char *dpar; /* array to delete non-matches in (-D) */ + char **dpar; /* arrays to delete non-matches in (-D) */ char *disp; /* array with display lists (-d) */ char *mesg; /* message to show unconditionally (-x) */ int dummies; /* add that many dummy matches */ |
