emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/coterm 8a5ffd9 68/80: Fix 'coterm--t-goto' for column z


From: ELPA Syncer
Subject: [elpa] externals/coterm 8a5ffd9 68/80: Fix 'coterm--t-goto' for column zero
Date: Wed, 13 Oct 2021 18:57:38 -0400 (EDT)

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

[Prev in Thread] Current Thread [Next in Thread]