diff options
| author | Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp> | 2016-02-03 01:24:56 +0900 |
|---|---|---|
| committer | Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp> | 2016-02-03 01:25:33 +0900 |
| commit | a4020e10a33f3f78681a2e18fb7add56338d4e81 (patch) | |
| tree | 8a189e89ca1be9c11bb7c444c57c03c35b24e7de /Src/cond.c | |
| parent | 37859: NULL-terminate cond_binary_ops static array. (diff) | |
| download | zsh-a4020e10a33f3f78681a2e18fb7add56338d4e81.tar zsh-a4020e10a33f3f78681a2e18fb7add56338d4e81.tar.gz zsh-a4020e10a33f3f78681a2e18fb7add56338d4e81.tar.bz2 zsh-a4020e10a33f3f78681a2e18fb7add56338d4e81.tar.lz zsh-a4020e10a33f3f78681a2e18fb7add56338d4e81.tar.xz zsh-a4020e10a33f3f78681a2e18fb7add56338d4e81.tar.zst zsh-a4020e10a33f3f78681a2e18fb7add56338d4e81.zip | |
37868: add 'static' to file local variables
Diffstat (limited to 'Src/cond.c')
| -rw-r--r-- | Src/cond.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Src/cond.c b/Src/cond.c index c5ab65eea..0381fe94b 100644 --- a/Src/cond.c +++ b/Src/cond.c @@ -30,7 +30,8 @@ #include "zsh.mdh" #include "cond.pro" -int tracingcond; +/**/ +int tracingcond; /* updated by execcond() in exec.c */ static char *condstr[COND_MOD] = { "!", "&&", "||", "==", "!=", "<", ">", "-nt", "-ot", "-ef", "-eq", |
