From 5a0b39644283daac9c391621ab11fa2475349c7f Mon Sep 17 00:00:00 2001 From: Eshel Yaron <me@eshelyaron.com> Date: Tue, 11 Feb 2025 18:18:51 +0100 Subject: [PATCH] (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 c5f7287..7891e1a 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"))) -- 2.39.5