Skip to content

Commit

Permalink
Add missing argument for previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
vemv committed Mar 24, 2022
1 parent 41840db commit 3627780
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cider-find.el
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ thing at point."
"Used for xref integration."
;; Check if `cider-nrepl` middleware is loaded. Allows fallback to other xref
;; backends, if cider-nrepl is not loaded.
(when (cider-nrepl-op-supported-p "ns-path" 'skip-ensure)
(when (cider-nrepl-op-supported-p "ns-path" nil 'skip-ensure)
'cider))

(cl-defmethod xref-backend-identifier-at-point ((_backend (eql cider)))
Expand Down

1 comment on commit 3627780

@bbatsov
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

And that's why I didn't like the change - everything that makes you pass explicit nils is a bad API as far as I'm concerned.

Please sign in to comment.