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

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

[elpa] externals/disk-usage c94e9dad16 1/2: Use line-beginning-position


From: ELPA Syncer
Subject: [elpa] externals/disk-usage c94e9dad16 1/2: Use line-beginning-position instead of obsolete point-at-bol
Date: Tue, 20 Sep 2022 04:57:52 -0400 (EDT)

branch: externals/disk-usage
commit c94e9dad16edf54c9b66afcca82b5f0a4d7f05b9
Author: Jonas Bernoulli <jonas@bernoul.li>
Commit: Jonas Bernoulli <jonas@bernoul.li>

    Use line-beginning-position instead of obsolete point-at-bol
    
    Obsolete since Emacs 29 / b7e867b841f47dcff3aeaef9b5608a237386ce70.
---
 disk-usage.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/disk-usage.el b/disk-usage.el
index 63a7378597..b8e91f247a 100644
--- a/disk-usage.el
+++ b/disk-usage.el
@@ -517,7 +517,7 @@ FILE-ENTRY may be a string or a button."
     (defvar tabulated-list--near-rows)
     (let ((tabulated-list--near-rows    ; Bind it if not bound yet (Bug#25506).
            (or (bound-and-true-p tabulated-list--near-rows)
-               (list (or (tabulated-list-get-entry (point-at-bol 0))
+               (list (or (tabulated-list-get-entry (line-beginning-position 0))
                          cols)
                      cols))))
       (setq x (tabulated-list-print-col 0



reply via email to

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