From: Eshel Yaron Date: Tue, 11 Feb 2025 17:18:51 +0000 (+0100) Subject: (kubed-list-next-column): Fix error when called at end of buffer. X-Git-Tag: v0.5.0~6 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5a0b39644283daac9c391621ab11fa2475349c7f;p=kubed.git (kubed-list-next-column): Fix error when called at end of buffer. --- 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")))