File tree 5 files changed +0
-35
lines changed
5 files changed +0
-35
lines changed Original file line number Diff line number Diff line change @@ -321,9 +321,6 @@ Here's an example for `pprint':
321
321
:group 'cider
322
322
:package-version '(cider . " 0.21.0" ))
323
323
324
- (make-obsolete-variable 'cider-pprint-fn 'cider-print-fn " 0.21" )
325
- (make-obsolete-variable 'cider-pprint-options 'cider-print-options " 0.21" )
326
-
327
324
(defcustom cider-print-quota (* 1024 1024 )
328
325
" A hard limit on the number of bytes to return from any printing operation.
329
326
Set to nil for no limit."
Original file line number Diff line number Diff line change @@ -97,10 +97,6 @@ configure `cider-debug-prompt' instead."
97
97
(const :tag " Both" both))
98
98
:package-version '(cider . " 0.9.1" ))
99
99
100
- (make-obsolete 'cider-debug-print-length 'cider-debug-print-options " 0.20" )
101
- (make-obsolete 'cider-debug-print-level 'cider-debug-print-options " 0.20" )
102
- (make-obsolete-variable 'cider-debug-print-options 'cider-print-options " 0.21" )
103
-
104
100
105
101
; ;; Implementation
106
102
(declare-function cider-browse-ns--combined-vars-with-meta " cider-browse-ns" )
Original file line number Diff line number Diff line change @@ -95,17 +95,13 @@ focused. Otherwise the buffer is displayed and focused."
95
95
" Controls whether the REPL buffer is displayed in the current window."
96
96
:type 'boolean )
97
97
98
- (make-obsolete-variable 'cider-repl-scroll-on-output 'scroll-conservatively " 0.21" )
99
-
100
98
(defcustom cider-repl-use-pretty-printing t
101
99
" Control whether results in the REPL are pretty-printed or not.
102
100
The REPL will use the printer specified in `cider-print-fn' .
103
101
The `cider-toggle-pretty-printing' command can be used to interactively
104
102
change the setting's value."
105
103
:type 'boolean )
106
104
107
- (make-obsolete-variable 'cider-repl-pretty-print-width 'cider-print-options " 0.21" )
108
-
109
105
(defcustom cider-repl-use-content-types nil
110
106
" Control whether REPL results are presented using content-type information.
111
107
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
149
145
`indent-for-tab-command' ."
150
146
:type 'symbol )
151
147
152
- (make-obsolete-variable 'cider-repl-print-length 'cider-print-options " 0.21" )
153
- (make-obsolete-variable 'cider-repl-print-level 'cider-print-options " 0.21" )
154
-
155
148
(defvar cider-repl-require-repl-utils-code
156
149
'((clj . " (when-let [requires (resolve 'clojure.main/repl-requires)]
157
150
(clojure.core/apply clojure.core/require @requires))" )
Original file line number Diff line number Diff line change @@ -62,10 +62,6 @@ Pick nil if you prefer the same window as *cider-error*."
62
62
:type 'boolean
63
63
:package-version '(cider . " 1.8.0" ))
64
64
65
- (make-obsolete 'cider-stacktrace-print-length 'cider-stacktrace-print-options " 0.20" )
66
- (make-obsolete 'cider-stacktrace-print-level 'cider-stacktrace-print-options " 0.20" )
67
- (make-obsolete-variable 'cider-stacktrace-print-options 'cider-print-options " 0.21" )
68
-
69
65
(defvar cider-stacktrace-detail-max 2
70
66
" The maximum detail level for causes." )
71
67
@@ -76,8 +72,6 @@ Pick nil if you prefer the same window as *cider-error*."
76
72
77
73
(defconst cider-error-buffer " *cider-error*" )
78
74
79
- (make-obsolete 'cider-visit-error-buffer 'cider-selector " 0.18" )
80
-
81
75
(defcustom cider-stacktrace-suppressed-errors '()
82
76
" Errors that won't make the stacktrace buffer 'pop-over' your active window.
83
77
The error types are represented as strings."
Original file line number Diff line number Diff line change 86
86
:prefix " nrepl-"
87
87
:group 'applications )
88
88
89
- ; ; (defcustom nrepl-buffer-name-separator " "
90
- ; ; "Used in constructing the REPL buffer name.
91
- ; ; The `nrepl-buffer-name-separator' separates cider-repl from the project name."
92
- ; ; :type '(string)
93
- ; ; :group 'nrepl)
94
- (make-obsolete-variable 'nrepl-buffer-name-separator 'cider-session-name-template " 0.18" )
95
-
96
- ; ; (defcustom nrepl-buffer-name-show-port nil
97
- ; ; "Show the connection port in the nrepl REPL buffer name, if set to t."
98
- ; ; :type 'boolean
99
- ; ; :group 'nrepl)
100
- (make-obsolete-variable 'nrepl-buffer-name-show-port 'cider-session-name-template " 0.18" )
101
-
102
89
(defcustom nrepl-connected-hook nil
103
90
" List of functions to call when connecting to the nREPL server."
104
91
:type 'hook )
@@ -1511,8 +1498,6 @@ The default buffer name is *nrepl-error*."
1511
1498
(set-window-point win (point-max )))
1512
1499
(setq buffer-read-only t )))
1513
1500
1514
- (make-obsolete 'nrepl-default-client-buffer-builder nil " 0.18" )
1515
-
1516
1501
(provide 'nrepl-client )
1517
1502
1518
1503
; ;; nrepl-client.el ends here
You can’t perform that action at this time.
0 commit comments