Skip to content

Commit

Permalink
Remove non-needed sharp.
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs090218 committed Nov 19, 2020
1 parent f44c653 commit ae004dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions company-fuzzy.el
Original file line number Diff line number Diff line change
Expand Up @@ -210,11 +210,11 @@ See function `string-prefix-p' for arguments PREFIX, STRING and IGNORE-CASE."

(defun company-fuzzy--is-contain-list-string (in-list in-str)
"Check if a string IN-STR contain in any string in the string list IN-LIST."
(cl-some #'(lambda (lb-sub-str) (string= lb-sub-str in-str)) in-list))
(cl-some (lambda (lb-sub-str) (string= lb-sub-str in-str)) in-list))

(defun company-fuzzy--is-contain-list-symbol (in-list in-symbol)
"Check if a symbol IN-SYMBOL contain in any symbol in the symbol list IN-LIST."
(cl-some #'(lambda (lb-sub-symbol) (equal lb-sub-symbol in-symbol)) in-list))
(cl-some (lambda (lb-sub-symbol) (equal lb-sub-symbol in-symbol)) in-list))

(defun company-fuzzy--normalize-backend-list (backends)
"Normalize all BACKENDS as list."
Expand Down

0 comments on commit ae004dc

Please sign in to comment.