Skip to content

Commit e18e0e5

Browse files
committed
Remove an obsolete defcustom
1 parent 3581df7 commit e18e0e5

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

cider-mode.el

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -218,23 +218,17 @@ With a prefix argument, prompt for function to run instead of -main."
218218
(define-key map (kbd "C-r") #'cider-insert-region-in-repl)
219219
(define-key map (kbd "C-n") #'cider-insert-ns-form-in-repl)))
220220

221-
(defcustom cider-switch-to-repl-after-insert-p t
222-
"Whether to switch to the repl after inserting a form into the repl."
221+
(defcustom cider-switch-to-repl-on-insert t
222+
"Whether to switch to the REPL when inserting a form into the REPL."
223223
:type 'boolean
224224
:group 'cider
225-
:package-version '(cider . "0.18.0"))
225+
:package-version '(cider . "0.21.0"))
226226

227227
(define-obsolete-variable-alias
228228
'cider-switch-to-repl-after-insert-p
229229
'cider-switch-to-repl-on-insert
230230
"0.21.0")
231231

232-
(defcustom cider-switch-to-repl-on-insert t
233-
"Whether to switch to the REPL when inserting a form into the REPL."
234-
:type 'boolean
235-
:group 'cider
236-
:package-version '(cider . "0.21.0"))
237-
238232
(defcustom cider-invert-insert-eval-p nil
239233
"Whether to invert the behavior of evaling.
240234
Default behavior when inserting is to NOT eval the form and only eval with

0 commit comments

Comments
 (0)