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