From e2b5f50e7bed082c41530cd80b1cb296ae04c0b0 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sat, 9 May 2020 01:37:40 -0400 Subject: [PATCH] Fix wrong-type-arg lsp--client in set-lsp-priority! --- modules/tools/lsp/autoload.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/tools/lsp/autoload.el b/modules/tools/lsp/autoload.el index a473fe50a..ec2a90355 100644 --- a/modules/tools/lsp/autoload.el +++ b/modules/tools/lsp/autoload.el @@ -5,7 +5,7 @@ "Change the PRIORITY of lsp CLIENT." (require 'lsp-mode) (if-let (client (gethash client lsp-clients)) - (setf (lsp--client-priority (gethash client lsp-clients)) + (setf (lsp--client-priority client) priority) (error "No LSP client named %S" client)))