1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-10-23 04:30:24 +02:00

25612: remove dead code.

This commit is contained in:
Clint Adams 2008-09-05 00:18:11 +00:00
parent bd915064c3
commit 29680850a0
2 changed files with 4 additions and 5 deletions

View file

@ -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;
}
}
}