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 @@ -5172,15 +5172,16 @@ It will show up only if current point has signature help."
5172
5172
(funcall action-handler action)
5173
5173
(lsp--send-execute-command command arguments?)))
5174
5174
5175
- (defun lsp-execute-command (_ command arguments)
5175
+ (defun lsp-execute-command (_server command arguments)
5176
5176
"Execute code action COMMAND with ARGUMENTS?.
5177
5177
Note that this function can now longer be overloaded using
5178
5178
`cl-defmethod', because that proved to be a liability. Use the
5179
5179
:action-handlers argument of `make-lsp-client' instead."
5180
5180
(lsp--execute-command
5181
5181
(lsp-make-command :command (symbol-name command)
5182
5182
:arguments? arguments)))
5183
- (make-obsolete #'lsp-execute-command #'lsp--execute-command "7.1.0")
5183
+ (make-obsolete 'lsp-execute-command "use `lsp--execute-command' instead."
5184
+ "7.1.0")
5184
5185
5185
5186
(lsp-defun lsp-execute-code-action ((action &as &CodeAction :command? :edit?))
5186
5187
"Execute code action ACTION.
You can’t perform that action at this time.
0 commit comments