From: João Távora Date: Sun, 19 Jan 2020 10:02:55 +0000 (+0100) Subject: Fix eglot-move-to-lsp-abiding-column () X-Git-Tag: emacs-29.0.90~1616^2~524^2~4^2~247 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c93c90842a96f8695ec81f1e34ff4ca951737f4d;p=emacs.git Fix eglot-move-to-lsp-abiding-column () Ensure conformance with the this part of the specification: "if the character value is greater than the line length it defaults back to the line length." * eglot.el: (eglot-move-to-lsp-abiding-column): Don't move beyond line-end. GitHub-reference: https://github.com/joaotavora/eglot/issues/361 --- diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el index 3149cd5cc01..2a50611d364 100644 --- a/lisp/progmodes/eglot.el +++ b/lisp/progmodes/eglot.el @@ -1050,15 +1050,20 @@ be set to `eglot-move-to-lsp-abiding-column', and (defun eglot-move-to-lsp-abiding-column (column) "Move to COLUMN abiding by the LSP spec." - (cl-loop - initially (move-to-column column) - with lbp = (line-beginning-position) - for diff = (- column - (/ (- (length (encode-coding-region lbp (point) 'utf-16 t)) - 2) - 2)) - until (zerop diff) - do (forward-char (/ (if (> diff 0) (1+ diff) (1- diff)) 2)))) + (save-restriction + (cl-loop + with lbp = (line-beginning-position) + initially + (narrow-to-region lbp (line-end-position)) + (move-to-column column) + for diff = (- column + (/ (- (length (encode-coding-region lbp (point) 'utf-16 t)) + 2) + 2)) + until (zerop diff) + do (condition-case eob-err + (forward-char (/ (if (> diff 0) (1+ diff) (1- diff)) 2)) + (end-of-buffer (cl-return eob-err)))))) (defun eglot--lsp-position-to-point (pos-plist &optional marker) "Convert LSP position POS-PLIST to Emacs point.