diff options
Diffstat (limited to 'Src')
-rw-r--r-- | Src/Zle/compmatch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Src/Zle/compmatch.c b/Src/Zle/compmatch.c index f38ea6a9f..682994fdd 100644 --- a/Src/Zle/compmatch.c +++ b/Src/Zle/compmatch.c @@ -211,9 +211,9 @@ void cline_setlens(Cline l, int both) { while (l) { - l->max = cline_sublen(l); + l->min = cline_sublen(l); if (both) - l->min = l->max; + l->max = l->min; l = l->next; } } |