Skip to content

Commit becfa17

Browse files
author
Bozhidar Batsov
committed
Remove stuff deprecated in 0.4
1 parent 6ffcdbc commit becfa17

File tree

2 files changed

+0
-14
lines changed

2 files changed

+0
-14
lines changed

cider-interaction.el

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -383,10 +383,6 @@ With a PREFIX argument, print the result in the current buffer."
383383
(cider-interactive-eval-print form)
384384
(cider-interactive-eval form))))
385385

386-
(define-obsolete-function-alias
387-
'cider-eval-expression-at-point
388-
'cider-eval-defun-at-point)
389-
390386
(defun cider-ns-form ()
391387
"Retrieve the ns form."
392388
(when (clojure-find-ns)
@@ -1053,10 +1049,6 @@ If invoked with a PREFIX argument, print the result in the current buffer."
10531049
(cider-interactive-eval-print (cider-last-sexp))
10541050
(cider-interactive-eval (cider-last-sexp))))
10551051

1056-
(define-obsolete-function-alias
1057-
'cider-eval-last-expression
1058-
'cider-eval-last-sexp)
1059-
10601052
(defun cider-eval-last-sexp-and-replace ()
10611053
"Evaluate the expression preceding point and replace it with its result."
10621054
(interactive)

cider-repl.el

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -723,8 +723,6 @@ namespace to switch to."
723723
:type 'boolean
724724
:group 'cider-repl)
725725

726-
(define-obsolete-variable-alias 'cider-wrap-history 'cider-repl-wrap-history)
727-
728726
;; These two vars contain the state of the last history search. We
729727
;; only use them if `last-command' was `cider-repl--history-replace',
730728
;; otherwise we reinitialize them.
@@ -860,16 +858,12 @@ If USE-CURRENT-INPUT is non-nil, use the current input."
860858
:safe 'integerp
861859
:group 'cider-repl-mode)
862860

863-
(define-obsolete-variable-alias 'cider-history-size 'cider-repl-history-size)
864-
865861
(defcustom cider-repl-history-file nil
866862
"File to save the persistent REPL history to."
867863
:type 'string
868864
:safe 'stringp
869865
:group 'cider-repl-mode)
870866

871-
(define-obsolete-variable-alias 'cider-history-file 'cider-repl-history-file)
872-
873867
(defun cider-repl--history-read-filename ()
874868
"Ask the user which file to use, defaulting `cider-repl-history-file'."
875869
(read-file-name "Use CIDER REPL history file: "

0 commit comments

Comments
 (0)