File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -5209,15 +5209,16 @@ It will filter by KIND if non nil."
5209
5209
(funcall action-handler action)
5210
5210
(lsp--send-execute-command command arguments?) ))
5211
5211
5212
- (defun lsp-execute-command (_ command arguments)
5212
+ (defun lsp-execute-command (_server command arguments )
5213
5213
" Execute code action COMMAND with ARGUMENTS?.
5214
5214
Note that this function can now longer be overloaded using
5215
5215
`cl-defmethod' , because that proved to be a liability. Use the
5216
5216
:action-handlers argument of `make-lsp-client' instead."
5217
5217
(lsp--execute-command
5218
5218
(lsp-make-command :command (symbol-name command)
5219
5219
:arguments? arguments)))
5220
- (make-obsolete #'lsp-execute-command #'lsp--execute-command "7.1.0")
5220
+ (make-obsolete 'lsp-execute-command " use `lsp--execute-command' instead."
5221
+ " 7.1.0" )
5221
5222
5222
5223
(lsp-defun lsp-execute-code-action ((action &as &CodeAction :command? :edit? ))
5223
5224
" Execute code action ACTION.
You can’t perform that action at this time.
0 commit comments