branch: externals/kubed
commit 5a0b39644283daac9c391621ab11fa2475349c7f
Author: Eshel Yaron <m...@eshelyaron.com>
Commit: Eshel Yaron <m...@eshelyaron.com>

    (kubed-list-next-column): Fix error when called at end of buffer.
---
 kubed.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kubed.el b/kubed.el
index c5f7287378..7891e1ab4a 100644
--- a/kubed.el
+++ b/kubed.el
@@ -696,7 +696,7 @@ to 1."
                   #'previous-single-property-change)))
     (dotimes (_ times)
       (setq next (funcall dir-fn next 'tabulated-list-column-name))
-      (when (= (char-after next) ?\n)
+      (when (equal (char-after next) ?\n)
         ;; At line boundary, go to first/last column of next line.
         (setq next (funcall dir-fn next 'tabulated-list-column-name)))
       (unless next (user-error "End of table")))

Reply via email to