File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1089,7 +1089,8 @@ calling `remove-overlays'.")
1089
1089
(defvar-local lsp--virtual-buffer-point-max nil)
1090
1090
1091
1091
(cl-defgeneric lsp-execute-command (server command arguments)
1092
- "Ask SERVER to execute COMMAND with ARGUMENTS.")
1092
+ "Ask SERVER to execute COMMAND with ARGUMENTS."
1093
+ (declare (obsolete "use `make-lsp-client' with :action-handlers instead." "7.1.0")))
1093
1094
1094
1095
(defun lsp-elt (sequence n)
1095
1096
"Return Nth element of SEQUENCE or nil if N is out of range."
@@ -5177,8 +5178,7 @@ It will show up only if current point has signature help."
5177
5178
(lsp--workspace-client)
5178
5179
(lsp--client-server-id))))
5179
5180
(condition-case nil
5180
- (prog1 (lsp-execute-command server-id (intern command) arguments?)
5181
- (lsp--warn "`lsp-execute-command' is deprecated"))
5181
+ (lsp-execute-command server-id (intern command) arguments?)
5182
5182
(cl-no-applicable-method
5183
5183
(if-let ((action-handler (lsp--find-action-handler command)))
5184
5184
(funcall action-handler action)
You can’t perform that action at this time.
0 commit comments