Skip to content

Commit d265232

Browse files
arichiardibbatsov
authored andcommitted
Fix a problem with pcase on inf-clojure-repl-type
It was never matching on the "default" branch with symbols.
1 parent 204e5b7 commit d265232

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

inf-clojure.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -591,7 +591,7 @@ The prefix argument SWITCH-TO-REPL controls whether to switch to REPL after the
591591
If you are using REPL types, it will pickup the most approapriate
592592
`inf-clojure-var-doc-form` variant."
593593
(pcase inf-clojure-repl-type
594-
(lumo inf-clojure-var-doc-form-lumo)
594+
(`lumo inf-clojure-var-doc-form-lumo)
595595
(_ inf-clojure-var-doc-form)))
596596

597597
(defcustom inf-clojure-var-source-form
@@ -634,7 +634,7 @@ If you are using REPL types, it will pickup the most approapriate
634634
If you are using REPL types, it will pickup the most approapriate
635635
`inf-clojure-completion-form` variant."
636636
(pcase inf-clojure-repl-type
637-
(lumo inf-clojure-completion-form-lumo)
637+
(`lumo inf-clojure-completion-form-lumo)
638638
(_ inf-clojure-completion-form)))
639639

640640
(defcustom inf-clojure-ns-vars-form

0 commit comments

Comments
 (0)