diff options
author | Clint Adams <clint@users.sourceforge.net> | 2008-09-05 00:18:11 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2008-09-05 00:18:11 +0000 |
commit | 29680850a0f13c759e0530f836e3099ebfeab18c (patch) | |
tree | eaa75d72f084bd66055ca5865d4bbb4340f9e550 | |
parent | bd915064c3d67f0c069adc2d079a70126e325fac (diff) | |
download | zsh-29680850a0f13c759e0530f836e3099ebfeab18c.tar.gz zsh-29680850a0f13c759e0530f836e3099ebfeab18c.tar.xz zsh-29680850a0f13c759e0530f836e3099ebfeab18c.zip |
25612: remove dead code.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | Src/Zle/compmatch.c | 7 |
2 files changed, 4 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog index 071139f7f..7e77e3231 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2008-09-04 Clint Adams <clint@zsh.org> + * 25612: Src/Zle/compmatch.c: remove dead code. + * 25610: Src/hist.c: remove dead code. * 25609: Src/Modules/zftp.c: initialize sz variable. diff --git a/Src/Zle/compmatch.c b/Src/Zle/compmatch.c index dfb812760..9bef1cfeb 100644 --- a/Src/Zle/compmatch.c +++ b/Src/Zle/compmatch.c @@ -120,7 +120,7 @@ add_bmatchers(Cmatcher m) mod_export void update_bmatchers(void) { - Cmlist p = bmatchers, q = NULL, ms; + Cmlist p = bmatchers, ms; Cmatcher mp; int t; @@ -132,10 +132,7 @@ update_bmatchers(void) p = p->next; if (!t) { - if (q) - q->next = p; - else - bmatchers = p; + bmatchers = p; } } } |