emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[nongnu] elpa/inf-clojure d265232 115/313: Fix a problem with pcase on i


From: ELPA Syncer
Subject: [nongnu] elpa/inf-clojure d265232 115/313: Fix a problem with pcase on inf-clojure-repl-type
Date: Wed, 11 Aug 2021 09:59:58 -0400 (EDT)

branch: elpa/inf-clojure
commit d2652325708af29e8007b5afc32e06dcb9d27a77
Author: Andrea Richiardi <a.richiardi.work@gmail.com>
Commit: Bozhidar Batsov <bozhidar.batsov@gmail.com>

    Fix a problem with pcase on inf-clojure-repl-type
    
    It was never matching on the "default" branch with symbols.
---
 inf-clojure.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/inf-clojure.el b/inf-clojure.el
index f95d536..a4b8dc2 100644
--- a/inf-clojure.el
+++ b/inf-clojure.el
@@ -591,7 +591,7 @@ The prefix argument SWITCH-TO-REPL controls whether to 
switch to REPL after the
 If you are using REPL types, it will pickup the most approapriate
 `inf-clojure-var-doc-form` variant."
   (pcase inf-clojure-repl-type
-    (lumo inf-clojure-var-doc-form-lumo)
+    (`lumo inf-clojure-var-doc-form-lumo)
     (_ inf-clojure-var-doc-form)))
 
 (defcustom inf-clojure-var-source-form
@@ -634,7 +634,7 @@ If you are using REPL types, it will pickup the most 
approapriate
 If you are using REPL types, it will pickup the most approapriate
 `inf-clojure-completion-form` variant."
   (pcase inf-clojure-repl-type
-    (lumo inf-clojure-completion-form-lumo)
+    (`lumo inf-clojure-completion-form-lumo)
     (_ inf-clojure-completion-form)))
 
 (defcustom inf-clojure-ns-vars-form



reply via email to

[Prev in Thread] Current Thread [Next in Thread]