From c9e88150632d5e99a944952ad8eb231fb2d9f4e7 Mon Sep 17 00:00:00 2001 From: JenChieh Date: Sun, 24 Jan 2021 02:13:51 +0800 Subject: [PATCH] Fixed hash-table invalid at the very beginning --- company-fuzzy.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/company-fuzzy.el b/company-fuzzy.el index 1fd8525..f4c40be 100644 --- a/company-fuzzy.el +++ b/company-fuzzy.el @@ -111,7 +111,7 @@ (defvar-local company-fuzzy--is-trigger-prefix-p nil "Flag to see if currently completion having a valid prefix.") -(defvar-local company-fuzzy--ht-backends-candidates nil +(defvar-local company-fuzzy--ht-backends-candidates (ht-create) "Store candidates by backend as id.") (defvar-local company-fuzzy--ht-history (ht-create)