[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/org c0cdc5f77c 08/10: * lisp/org.el (org-at-heading-p):
From: |
ELPA Syncer |
Subject: |
[elpa] externals/org c0cdc5f77c 08/10: * lisp/org.el (org-at-heading-p): Do not call redundant `bolp' |
Date: |
Sun, 14 May 2023 08:58:56 -0400 (EDT) |
branch: externals/org
commit c0cdc5f77c255242722f7922a41e0ac3c5ce5ffe
Author: Ihor Radchenko <yantar92@posteo.net>
Commit: Ihor Radchenko <yantar92@posteo.net>
* lisp/org.el (org-at-heading-p): Do not call redundant `bolp'
---
lisp/org.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lisp/org.el b/lisp/org.el
index 497baa8507..57fe046a74 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -20429,7 +20429,7 @@ Respect narrowing."
If INVISIBLE-NOT-OK is non-nil, an invisible heading line is not ok."
(save-excursion
(beginning-of-line)
- (and (bolp) (or (not invisible-not-ok) (not (org-fold-folded-p)))
+ (and (or (not invisible-not-ok) (not (org-fold-folded-p)))
(looking-at outline-regexp))))
(defun org-in-commented-heading-p (&optional no-inheritance element)
- [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 <=
- [elpa] externals/org cfb2ddab11 10/10: org-update-checkbox-count: Disable fold modification check, ELPA Syncer, 2023/05/14
- [elpa] externals/org b70ef01ff2 02/10: org-element: Prefer property values that occupy less memory, ELPA Syncer, 2023/05/14