@@ -164,18 +164,6 @@ will not work as expected in such REPLs."
164
164
:group 'cljr
165
165
:type 'boolean )
166
166
167
- (defcustom cljr-find-usages-ignore-analyzer-errors nil
168
- " DEPRECATED: use `cljr-ignore-analyzer-errors' instead.
169
- If t, `cljr-find-usages' ignores namespaces that cannot be analyzed.
170
- If any namespaces presents an analyzer error, it is skipped and
171
- the command carries on looking for the given symbol in those
172
- namespaces which can be analyzed.
173
-
174
- If nil, `cljr-find-usages' won't run if there is a broken
175
- namespace in the project."
176
- :group 'cljr
177
- :type 'boolean )
178
-
179
167
(defcustom cljr-ignore-analyzer-errors nil
180
168
" If t, `cljr-find-usages' `cljr-inline-symbol' `cljr-rename-symbol'
181
169
ignores namespaces that cannot be analyzed.
@@ -188,6 +176,8 @@ won't run if there is a broken namespace in the project."
188
176
:group 'cljr
189
177
:type 'boolean )
190
178
179
+ (define-obsolete-variable-alias 'cljr-find-usages-ignore-analyzer-errors 'cljr-ignore-analyzer-errors " 2.3.0" )
180
+
191
181
(defcustom cljr-auto-eval-ns-form t
192
182
" When true refactorings which change the ns form also trigger
193
183
its re-evaluation."
@@ -2525,7 +2515,7 @@ See: https://github.com/clojure-emacs/clj-refactor.el/wiki/cljr-promote-function
2525
2515
" name" symbol
2526
2516
" ignore-paths" cljr-middleware-ignored-paths
2527
2517
" ignore-errors"
2528
- (when ( or cljr-find-usages- ignore-analyzer-errors cljr-ignore-analyzer-errors) " true" ))))
2518
+ (when cljr-ignore-analyzer-errors " true" ))))
2529
2519
(with-current-buffer (with-no-warnings (cider-current-repl-buffer))
2530
2520
(setq cjr--occurrence-count 0 )
2531
2521
(setq cljr--num-syms -1 )
0 commit comments