branch: externals/eglot commit d6508e06b3569f2c2fa6d09326eadad47f41345a Author: haqle314 <16577773+haqle...@users.noreply.github.com> Commit: João Távora <joaotav...@gmail.com>
Fix #273: fix a typo * eglot.el (eglot--lsp-position-to-point): fix eglot--warn call Copyright-paperwork-exempt: yes --- eglot.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eglot.el b/eglot.el index aec975c..25c8fbe 100644 --- a/eglot.el +++ b/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)))