branch: elpa/cider commit de548e3084f6f6b5802dd7f939fd9ddf36e62038 Author: Oleksandr Yakushev <a...@bytopia.org> Commit: Bozhidar Batsov <bozhi...@batsov.dev>
Remove obsolete variables from before 1.0 --- cider-client.el | 3 --- cider-debug.el | 4 ---- cider-repl.el | 7 ------- cider-stacktrace.el | 6 ------ nrepl-client.el | 15 --------------- 5 files changed, 35 deletions(-) diff --git a/cider-client.el b/cider-client.el index 225a43dee0..29d3c67160 100644 --- a/cider-client.el +++ b/cider-client.el @@ -321,9 +321,6 @@ Here's an example for `pprint': :group 'cider :package-version '(cider . "0.21.0")) -(make-obsolete-variable 'cider-pprint-fn 'cider-print-fn "0.21") -(make-obsolete-variable 'cider-pprint-options 'cider-print-options "0.21") - (defcustom cider-print-quota (* 1024 1024) "A hard limit on the number of bytes to return from any printing operation. Set to nil for no limit." diff --git a/cider-debug.el b/cider-debug.el index d7427b57a3..ce24cb31b2 100644 --- a/cider-debug.el +++ b/cider-debug.el @@ -97,10 +97,6 @@ configure `cider-debug-prompt' instead." (const :tag "Both" both)) :package-version '(cider . "0.9.1")) -(make-obsolete 'cider-debug-print-length 'cider-debug-print-options "0.20") -(make-obsolete 'cider-debug-print-level 'cider-debug-print-options "0.20") -(make-obsolete-variable 'cider-debug-print-options 'cider-print-options "0.21") - ;;; Implementation (declare-function cider-browse-ns--combined-vars-with-meta "cider-browse-ns") diff --git a/cider-repl.el b/cider-repl.el index d37bb3382f..202845a379 100644 --- a/cider-repl.el +++ b/cider-repl.el @@ -95,8 +95,6 @@ focused. Otherwise the buffer is displayed and focused." "Controls whether the REPL buffer is displayed in the current window." :type 'boolean) -(make-obsolete-variable 'cider-repl-scroll-on-output 'scroll-conservatively "0.21") - (defcustom cider-repl-use-pretty-printing t "Control whether results in the REPL are pretty-printed or not. The REPL will use the printer specified in `cider-print-fn'. @@ -104,8 +102,6 @@ The `cider-toggle-pretty-printing' command can be used to interactively change the setting's value." :type 'boolean) -(make-obsolete-variable 'cider-repl-pretty-print-width 'cider-print-options "0.21") - (defcustom cider-repl-use-content-types nil "Control whether REPL results are presented using content-type information. The `cider-repl-toggle-content-types' command can be used to interactively @@ -149,9 +145,6 @@ you'd like to use the default Emacs behavior use `indent-for-tab-command'." :type 'symbol) -(make-obsolete-variable 'cider-repl-print-length 'cider-print-options "0.21") -(make-obsolete-variable 'cider-repl-print-level 'cider-print-options "0.21") - (defvar cider-repl-require-repl-utils-code '((clj . "(when-let [requires (resolve 'clojure.main/repl-requires)] (clojure.core/apply clojure.core/require @requires))") diff --git a/cider-stacktrace.el b/cider-stacktrace.el index 55636c8b3d..5686dc5e64 100644 --- a/cider-stacktrace.el +++ b/cider-stacktrace.el @@ -62,10 +62,6 @@ Pick nil if you prefer the same window as *cider-error*." :type 'boolean :package-version '(cider . "1.8.0")) -(make-obsolete 'cider-stacktrace-print-length 'cider-stacktrace-print-options "0.20") -(make-obsolete 'cider-stacktrace-print-level 'cider-stacktrace-print-options "0.20") -(make-obsolete-variable 'cider-stacktrace-print-options 'cider-print-options "0.21") - (defvar cider-stacktrace-detail-max 2 "The maximum detail level for causes.") @@ -76,8 +72,6 @@ Pick nil if you prefer the same window as *cider-error*." (defconst cider-error-buffer "*cider-error*") -(make-obsolete 'cider-visit-error-buffer 'cider-selector "0.18") - (defcustom cider-stacktrace-suppressed-errors '() "Errors that won't make the stacktrace buffer 'pop-over' your active window. The error types are represented as strings." diff --git a/nrepl-client.el b/nrepl-client.el index b438cfe37e..454fb2fe51 100644 --- a/nrepl-client.el +++ b/nrepl-client.el @@ -86,19 +86,6 @@ :prefix "nrepl-" :group 'applications) -;; (defcustom nrepl-buffer-name-separator " " -;; "Used in constructing the REPL buffer name. -;; The `nrepl-buffer-name-separator' separates cider-repl from the project name." -;; :type '(string) -;; :group 'nrepl) -(make-obsolete-variable 'nrepl-buffer-name-separator 'cider-session-name-template "0.18") - -;; (defcustom nrepl-buffer-name-show-port nil -;; "Show the connection port in the nrepl REPL buffer name, if set to t." -;; :type 'boolean -;; :group 'nrepl) -(make-obsolete-variable 'nrepl-buffer-name-show-port 'cider-session-name-template "0.18") - (defcustom nrepl-connected-hook nil "List of functions to call when connecting to the nREPL server." :type 'hook) @@ -1511,8 +1498,6 @@ The default buffer name is *nrepl-error*." (set-window-point win (point-max))) (setq buffer-read-only t))) -(make-obsolete 'nrepl-default-client-buffer-builder nil "0.18") - (provide 'nrepl-client) ;;; nrepl-client.el ends here