branch: externals/coterm
commit 8a5ffd9f853ba4a2ae8558e42ba593d7abc64a84
Author: m <>
Commit: m <>

    Fix 'coterm--t-goto' for column zero
---
 coterm.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/coterm.el b/coterm.el
index 7c0cb1b..2a5c4d1 100644
--- a/coterm.el
+++ b/coterm.el
@@ -598,7 +598,7 @@ Return non-nil if the position was actually reached."
   (and
    (zerop (forward-line
            (+ coterm--t-home-offset row)))
-   (not (eobp))
+   (bolp)
    (<= col (move-to-column col))))
 
 (defun coterm--t-apply-proc-filt (proc-filt process str)

Reply via email to