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

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

[elpa] externals/org 5b6268c29e 7/7: org-columns--truncate-below-width:


From: ELPA Syncer
Subject: [elpa] externals/org 5b6268c29e 7/7: org-columns--truncate-below-width: Fix Emacs 27 compatibility
Date: Mon, 17 Jul 2023 06:59:30 -0400 (EDT)

branch: externals/org
commit 5b6268c29ecb388d1cf4fd677108f2a8cc439543
Author: Ihor Radchenko <yantar92@posteo.net>
Commit: Ihor Radchenko <yantar92@posteo.net>

    org-columns--truncate-below-width: Fix Emacs 27 compatibility
    
    * lisp/org-colview.el (org-columns--truncate-below-width): Do not use
    extra optional arguments that are only available since Emacs 28.
---
 lisp/org-colview.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/org-colview.el b/lisp/org-colview.el
index 8d8d8954d6..ef42f9e232 100644
--- a/lisp/org-colview.el
+++ b/lisp/org-colview.el
@@ -459,7 +459,7 @@ substring whose `string-width' does not exceed WIDTH."
   (declare (side-effect-free t))
   (let ((end (min width (length string))) res)
     (while (and end (>= end 0))
-      (let* ((curr (string-width string 0 end))
+      (let* ((curr (string-width (substring string 0 end)))
              (excess (- curr width)))
         (if (> excess 0)
             (cl-decf end (max 1 (/ excess 2)))



reply via email to

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