@@ -1142,7 +1142,7 @@ This is controlled via `cider-interactive-eval-output-destination'."
1142
1142
(cider-emit-into-popup-buffer output-buffer output)
1143
1143
(pop-to-buffer output-buffer)))
1144
1144
(`repl-buffer (funcall repl-emit-function output))
1145
- (t (error " Unsupported value %s for `cider-interactive-eval-output-destination' "
1145
+ (_ (error " Unsupported value %s for `cider-interactive-eval-output-destination' "
1146
1146
cider-interactive-eval-output-destination))))
1147
1147
1148
1148
(defun cider-emit-interactive-eval-output (output )
@@ -1845,7 +1845,7 @@ On failure, read a symbol name using PROMPT and call CALLBACK with that."
1845
1845
(pcase var-status
1846
1846
(" not-found" (error " Var %s not found " sym))
1847
1847
(" not-traceable" (error " Var %s can't be traced because it's not bound to a function " var-name))
1848
- (t (message " Var %s %s " var-name var-status)))))
1848
+ (_ (message " Var %s %s " var-name var-status)))))
1849
1849
1850
1850
(defun cider-toggle-trace-var (arg )
1851
1851
" Toggle var tracing.
@@ -1878,7 +1878,7 @@ Defaults to the current ns. With prefix arg QUERY, prompts for a ns."
1878
1878
(ns-status (nrepl-dict-get trace-response " ns-status" )))
1879
1879
(pcase ns-status
1880
1880
(" not-found" (error " ns %s not found " ns))
1881
- (t (message " ns %s %s " ns ns-status))))))
1881
+ (_ (message " ns %s %s " ns ns-status))))))
1882
1882
1883
1883
(defun cider-create-doc-buffer (symbol )
1884
1884
" Populates *cider-doc* with the documentation for SYMBOL."
0 commit comments