fzy

terminal fuzzy finder picker

git clone https://9o.is/git/fzy.git

commit 69378ec32fe85655542f63d90917925fa935897d
parent 3f32169f0929ec8945e2e59f8e2ec3a20273dc2c
Author: John Hawthorn <john.hawthorn@gmail.com>
Date:   Sat,  6 Sep 2014 18:55:02 -0700

bzero of matrices is unnecessary

Diffstat:
Mmatch.c | 2--
1 file changed, 0 insertions(+), 2 deletions(-)

diff --git a/match.c b/match.c @@ -65,8 +65,6 @@ double calculate_score(const char *needle, const char *haystack, size_t *positio score_t match_bonus[m]; score_t D[n][m], M[n][m]; - bzero(D, sizeof(D)); - bzero(M, sizeof(M)); /* * D[][] Stores the best score for this position ending with a match.