[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/org cfb2ddab11 10/10: org-update-checkbox-count: Disabl
From: |
ELPA Syncer |
Subject: |
[elpa] externals/org cfb2ddab11 10/10: org-update-checkbox-count: Disable fold modification check |
Date: |
Sun, 14 May 2023 08:58:56 -0400 (EDT) |
branch: externals/org
commit cfb2ddab11a534ed4e9bf86a17863d8c7664a661
Author: Ihor Radchenko <yantar92@posteo.net>
Commit: Ihor Radchenko <yantar92@posteo.net>
org-update-checkbox-count: Disable fold modification check
---
lisp/org-list.el | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/lisp/org-list.el b/lisp/org-list.el
index bc8c5012ba..0e52e99550 100644
--- a/lisp/org-list.el
+++ b/lisp/org-list.el
@@ -2615,11 +2615,12 @@ With optional prefix argument ALL, do this for the
whole buffer."
(checked (nth 3 cookie))
(total (nth 4 cookie)))
(goto-char beg)
- (insert
- (if percent (format "[%d%%]" (floor (* 100.0 checked)
- (max 1 total)))
- (format "[%d/%d]" checked total)))
- (delete-region (point) (+ (point) (- end beg)))
+ (org-fold-core-ignore-modifications
+ (insert-and-inherit
+ (if percent (format "[%d%%]" (floor (* 100.0 checked)
+ (max 1 total)))
+ (format "[%d/%d]" checked total)))
+ (delete-region (point) (+ (point) (- end beg))))
(when org-auto-align-tags (org-fix-tags-on-the-fly)))))))
(defun org-get-checkbox-statistics-face ()
- [elpa] externals/org updated (ef4d8adcaa -> cfb2ddab11), ELPA Syncer, 2023/05/14
- [elpa] externals/org 57eb97fa35 01/10: org-element: Consistently drop text properties when parsing, ELPA Syncer, 2023/05/14
- [elpa] externals/org 6fd6b94cd5 05/10: org-element-parse-buffer: Use "property" term consistently, ELPA Syncer, 2023/05/14
- [elpa] externals/org c8e8f4e3c2 06/10: org-fold--reveal-headline-at-point: Fix edge case with invisible subtree, ELPA Syncer, 2023/05/14
- [elpa] externals/org 546f2d86d1 07/10: org-add-prop-inherited: Avoid modifying S, ELPA Syncer, 2023/05/14
- [elpa] externals/org ea3d06e57e 09/10: org-element--cache-active-p: Fix when cache is not initialized, ELPA Syncer, 2023/05/14
- [elpa] externals/org aafa0c2828 04/10: org-element: Cache commonly used property value strings in obarray, ELPA Syncer, 2023/05/14
- [elpa] externals/org ec694f00de 03/10: org-element-inlinetask-parser: Store boolean instead of larger integer, ELPA Syncer, 2023/05/14
- [elpa] externals/org c0cdc5f77c 08/10: * lisp/org.el (org-at-heading-p): Do not call redundant `bolp', ELPA Syncer, 2023/05/14
- [elpa] externals/org cfb2ddab11 10/10: org-update-checkbox-count: Disable fold modification check,
ELPA Syncer <=
- [elpa] externals/org b70ef01ff2 02/10: org-element: Prefer property values that occupy less memory, ELPA Syncer, 2023/05/14