branch: elpa/slime
commit 116892e6bdde253d9146028bbf5baf2cc4832534
Author: Rudolf Schlatte <[email protected]>
Commit: Stas Boukarev <[email protected]>

    Use cl-case instead of case
    
    The native compiler treates `case` as a function and thus miscompiles 
slime-references.el
---
 contrib/slime-references.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/contrib/slime-references.el b/contrib/slime-references.el
index 93389ae841..4d96bcd059 100644
--- a/contrib/slime-references.el
+++ b/contrib/slime-references.el
@@ -103,7 +103,7 @@ See SWANK-BACKEND:CONDITION-REFERENCES for the datatype."
              (t
               (hyperspec-lookup what))))
           (t
-           (case slime-sbcl-manual-root
+           (cl-case slime-sbcl-manual-root
              (:info
               (info (format "(sbcl)%s" what)))
              (t

Reply via email to