From 80c827119d9b1deb9a900c5a281ebb084d02ab48 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 23 Feb 2020 15:35:12 -0500 Subject: [PATCH] Fix references to old rust-analyzer binary Closes #2588 --- modules/lang/rust/doctor.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/lang/rust/doctor.el b/modules/lang/rust/doctor.el index 8cc8af442..b8af96745 100644 --- a/modules/lang/rust/doctor.el +++ b/modules/lang/rust/doctor.el @@ -17,8 +17,8 @@ (setq lsp-server rustic-lsp-server)) (pcase lsp-server (`rust-analyzer - (unless (executable-find "ra_lsp_server") - (warn! "Couldn't find rust analyzer (ra_lsp_server)"))) + (unless (executable-find "rust-analyzer") + (warn! "Couldn't find rust analyzer (rust-analyzer)"))) (`rls (unless (executable-find "rls") (warn! "Couldn't find rls")))))