From 6ed1f50cde74a4ae1a8225abbac37e6dd007da3f Mon Sep 17 00:00:00 2001 From: haqle314 <16577773+haqle314@users.noreply.github.com> Date: Tue, 2 Jul 2019 16:58:41 -0500 Subject: [PATCH] Fix a typo * eglot.el (eglot--lsp-position-to-point): fix eglot--warn call Copyright-paperwork-exempt: yes GitHub-reference: fix https://github.com/joaotavora/eglot/issues/273 --- lisp/progmodes/eglot.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el index aec975c1e6f..25c8fbe7075 100644 --- a/lisp/progmodes/eglot.el +++ b/lisp/progmodes/eglot.el @@ -1024,7 +1024,7 @@ If optional MARKER, return a marker instead" (col (plist-get pos-plist :character))) (unless (wholenump col) (eglot--warn - :eglot "Caution: LSP server sent invalid character position %s. Using 0 instead." + "Caution: LSP server sent invalid character position %s. Using 0 instead." col) (setq col 0)) (funcall eglot-move-to-column-function col))) -- 2.39.2