Skip to content

Commit 705133f

Browse files
committed
Remove a bunch of stuff that were marked as obsolete in 0.10
1 parent 2a09d6e commit 705133f

File tree

5 files changed

+0
-15
lines changed

5 files changed

+0
-15
lines changed

cider-client.el

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,6 @@ found."
8585
(unless no-error
8686
(error "No nREPL connection buffer"))))
8787

88-
(define-obsolete-function-alias 'nrepl-current-connection-buffer 'cider-default-connection "0.10")
89-
9088
(defun cider-connections ()
9189
"Return the list of connection buffers.
9290
If the list is empty and buffer-local, return the global value."
@@ -355,8 +353,6 @@ connection but can be invoked from any buffer (like `cider-refresh')."
355353
(select-window (display-buffer buffer))))
356354
(cider--setup-connection-browser)))
357355

358-
(define-obsolete-function-alias 'nrepl-connection-browser 'cider-connection-browser "0.10")
359-
360356
(defun cider--connections-refresh ()
361357
"Refresh the connections buffer, if the buffer exists.
362358
The connections buffer is determined by
@@ -694,8 +690,6 @@ Return the REPL buffer given by `cider-current-connection'.")
694690
(with-current-buffer (cider-current-connection)
695691
nrepl-session))
696692

697-
(define-obsolete-function-alias 'nrepl-current-session 'cider-current-session "0.10")
698-
699693
(defun cider-current-messages-buffer ()
700694
"The nREPL messages buffer, matching the current connection."
701695
(nrepl-messages-buffer (cider-current-connection)))
@@ -705,8 +699,6 @@ Return the REPL buffer given by `cider-current-connection'.")
705699
(with-current-buffer (cider-current-connection)
706700
nrepl-tooling-session))
707701

708-
(define-obsolete-function-alias 'nrepl-current-tooling-session 'cider-current-tooling-session "0.10")
709-
710702
(defun cider--var-choice (var-info)
711703
"Prompt to choose from among multiple VAR-INFO candidates, if required.
712704
This is needed only when the symbol queried is an unqualified host platform
@@ -979,8 +971,6 @@ default connection."
979971
(cider-default-connection)
980972
(cider-current-connection)))))
981973

982-
(define-obsolete-function-alias 'cider-display-current-connection-info 'cider-display-connection-info "0.10")
983-
984974
(defun cider-rotate-default-connection ()
985975
"Rotate and display the default nREPL connection."
986976
(interactive)
@@ -1002,7 +992,6 @@ If CONN is not provided the user will be prompted to select a connection."
1002992
(project-dir (cider--connection-project-dir conn)))
1003993
(cider-connect host port project-dir)))
1004994

1005-
(define-obsolete-function-alias 'cider-rotate-connection 'cider-rotate-default-connection "0.10")
1006995
(defun cider-extract-designation-from-current-repl-buffer ()
1007996
"Extract the designation from the cider repl buffer name."
1008997
(let ((repl-buffer-name (buffer-name (cider-current-repl-buffer)))

cider-overlays.el

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ see `cider-debug-use-overlays'."
7474
:type 'string
7575
:group 'cider
7676
:package-version '(cider . "0.5.0"))
77-
(define-obsolete-variable-alias 'cider-interactive-eval-result-prefix 'cider-eval-result-prefix "0.10.0")
7877

7978
(defcustom cider-eval-result-duration 'command
8079
"Duration, in seconds, of CIDER's eval-result overlays.

cider-repl.el

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,6 @@ This will not work on non-current prompts."
485485
(defun cider-repl-prompt-default (namespace)
486486
"Return a prompt string that mentions NAMESPACE."
487487
(format "%s> " namespace))
488-
(define-obsolete-function-alias 'cider-repl-default-prompt 'cider-repl-prompt-default "0.10.0")
489488

490489
(defun cider-repl-prompt-abbreviated (namespace)
491490
"Return a prompt string that abbreviates NAMESPACE."

cider-util.el

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
(require 'cider-compat)
3737

3838
(defalias 'cider-pop-back 'pop-tag-mark)
39-
(define-obsolete-function-alias 'cider-jump-back 'cider-pop-back "0.10.0")
4039

4140
(defcustom cider-font-lock-max-length 10000
4241
"The max length of strings to fontify in `cider-font-lock-as'.

nrepl-client.el

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -814,7 +814,6 @@ CONN-BUFFER refers to a (presumably) dead connection, which we can eventually re
814814
(setq nrepl-session nil)
815815
(setq nrepl-tooling-session nil)))
816816

817-
(define-obsolete-function-alias 'nrepl-close 'cider--close-connection-buffer "0.10.0")
818817

819818
;;; Client: Response Handling
820819
;; After being decoded, responses (aka, messages from the server) are dispatched

0 commit comments

Comments
 (0)