branch: elpa/inf-clojure commit d2652325708af29e8007b5afc32e06dcb9d27a77 Author: Andrea Richiardi <a.richiardi.w...@gmail.com> Commit: Bozhidar Batsov <bozhidar.bat...@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