From 042fd4d9292a11ff35366b8bc6bf5f064d694e18 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 10 Jan 2021 04:56:40 -0500 Subject: [PATCH] Fix obsolete `case` alias compiler warnings --- modules/editor/multiple-cursors/config.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/editor/multiple-cursors/config.el b/modules/editor/multiple-cursors/config.el index 1dfc0443f..4afd246db 100644 --- a/modules/editor/multiple-cursors/config.el +++ b/modules/editor/multiple-cursors/config.el @@ -168,7 +168,7 @@ (defun +multiple-cursors-compat-back-to-previous-state-h () (when +mc--compat-evil-prev-state (unwind-protect - (case +mc--compat-evil-prev-state + (cl-case +mc--compat-evil-prev-state ((normal visual) (evil-force-normal-state)) (t (message "Don't know how to handle previous state: %S" +mc--compat-evil-prev-state)))