summaryrefslogtreecommitdiff
path: root/cider-client.el
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2016-04-10 05:41:42 -0700
committerBozhidar Batsov <bozhidar@batsov.com>2016-04-10 05:41:42 -0700
commitc8bb6bc43da72dcce5b855757145ce99a1521c8f (patch)
treeff2644f207cc6193eb12b442898f318468996f25 /cider-client.el
parent007e5bd60925d509aa8abf3f39299d15d8f2144a (diff)
Kill everything that was obsoleted in the previous release
Diffstat (limited to 'cider-client.el')
-rw-r--r--cider-client.el22
1 files changed, 0 insertions, 22 deletions
diff --git a/cider-client.el b/cider-client.el
index 58c0f4d1..0f027778 100644
--- a/cider-client.el
+++ b/cider-client.el
@@ -1063,28 +1063,6 @@ Buffer names changed are cider-repl and nrepl-server."
(rename-buffer new-server-buffer-name)))))
(message "CIDER buffer designation changed to: %s" designation)))
-;;; Obsolete
-(defun cider--nrepl-pprint-eval-request (input session &optional ns right-margin pprint-fn)
- "Prepare :pprint-eval request message for INPUT.
-PPRINT-FN and RIGHT-MARGIN are pased to `cider--nrepl-pprint-request-plist'.
-INPUT, SESSION, and NS are passed to `nrepl--eval-request'."
- (append (cider--nrepl-pprint-request-plist right-margin pprint-fn)
- (nrepl--eval-request input session ns)))
-(make-obsolete 'cider--nrepl-pprint-eval-request 'cider--nrepl-pprint-request-plist "0.11.0")
-
-(defun cider-nrepl-request:pprint-eval (input callback &optional ns right-margin pprint-fn)
- "Send the request INPUT and register the CALLBACK as the response handler.
-The request is dispatched via CONNECTION and SESSION.
-If NS is non-nil, include it in the request.
-RIGHT-MARGIN specifies the maximum column width of the
-pretty-printed result, and is included in the request if non-nil.
-PPRINT-FN generates the pretty-printed result."
- (cider-nrepl-request:eval input callback ns nil nil
- (cider--nrepl-pprint-request-plist right-margin pprint-fn)))
-(make-obsolete 'cider-nrepl-request:pprint-eval
- "`cider-nrepl-request:eval' with `cider--nrepl-pprint-request-plist'"
- "0.11.0")
-
(provide 'cider-client)
;;; cider-client.el ends here