From: Eli Zaretskii Date: Mon, 16 Jan 2023 14:52:48 +0000 (+0200) Subject: ; Avoid byte-compiler warning in eglot.el X-Git-Tag: emacs-29.0.90~707 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f367ba3ed03526356448a94addbb8554ece2f482;p=emacs.git ; Avoid byte-compiler warning in eglot.el * lisp/progmodes/eglot.el (eglot): Rename INTERACTIVE to avoid byte-compiler warning. Update the doc string. (Bug#60557) --- diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el index 10512633181..dc73152f5ab 100644 --- a/lisp/progmodes/eglot.el +++ b/lisp/progmodes/eglot.el @@ -1075,7 +1075,7 @@ suitable root directory for a given LSP server's purposes." ;;;###autoload (defun eglot (managed-major-mode project class contact language-id - &optional interactive) + &optional _interactive) "Start LSP server in support of PROJECT's buffers under MANAGED-MAJOR-MODE. This starts a Language Server Protocol (LSP) server suitable for the @@ -1112,7 +1112,7 @@ described in `eglot-server-programs', which see. LANGUAGE-ID is the language ID string to send to the server for MANAGED-MAJOR-MODE, which matters to a minority of servers. -INTERACTIVE is t if called interactively." +INTERACTIVE is ignored and provided for backward compatibility." (interactive (let ((current-server (eglot-current-server))) (unless (or (null current-server)