Skip to content

Commit

Permalink
fix when-let* value-form syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
jinnovation committed Jan 11, 2025
1 parent 15b3209 commit c9a6bf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kele.el
Original file line number Diff line number Diff line change
Expand Up @@ -686,7 +686,7 @@ returns nil."
(cl-defmethod proxy-active-p ((manager kele--proxy-manager)
context)
"Return non-nil if a proxy serve is active for CONTEXT in MANAGER."
(when-let* (res (assoc context (oref manager records)))
(when-let* ((res (assoc context (oref manager records))))
(cdr res)))

(defvar kele--global-proxy-manager (kele--proxy-manager))
Expand Down

0 comments on commit c9a6bf6

Please sign in to comment.