Skip to content

Commit 6153e00

Browse files
committed
Address a compilation warning
1 parent c4f9513 commit 6153e00

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

cider-mode.el

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -218,17 +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+
(define-obsolete-variable-alias
222+
'cider-switch-to-repl-after-insert-p
223+
'cider-switch-to-repl-on-insert
224+
"0.21.0")
225+
221226
(defcustom cider-switch-to-repl-on-insert t
222227
"Whether to switch to the REPL when inserting a form into the REPL."
223228
:type 'boolean
224229
:group 'cider
225230
:package-version '(cider . "0.21.0"))
226231

227-
(define-obsolete-variable-alias
228-
'cider-switch-to-repl-after-insert-p
229-
'cider-switch-to-repl-on-insert
230-
"0.21.0")
231-
232232
(defcustom cider-invert-insert-eval-p nil
233233
"Whether to invert the behavior of evaling.
234234
Default behavior when inserting is to NOT eval the form and only eval with

0 commit comments

Comments
 (0)