diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-06-26 08:20:33 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-06-26 08:20:33 +0000 |
commit | 470515922c73eaf630d0b2eb561980e1a87150cb (patch) | |
tree | 9d22fb9fabaf37c6cb3ff91ef1cbc11d0d3c5ee6 /Completion | |
parent | 4d656bfb0ee1ef079bd674187fecca871ceafaab (diff) | |
download | zsh-470515922c73eaf630d0b2eb561980e1a87150cb.tar.gz zsh-470515922c73eaf630d0b2eb561980e1a87150cb.tar.xz zsh-470515922c73eaf630d0b2eb561980e1a87150cb.zip |
typo in _history; missing free()s in zle_tricky.c (12067)
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Core/_history | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Core/_history b/Completion/Core/_history index dafd61407..63878ac1c 100644 --- a/Completion/Core/_history +++ b/Completion/Core/_history @@ -57,4 +57,4 @@ while [[ $compstate[nmatches] -eq 0 && beg -lt max ]]; do (( beg+=slice )) done -(( $compstate[namtches] )) +(( $compstate[nmatches] )) |