[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/org-tree-slide ea33297150 084/144: Bugfix, commented headi
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/org-tree-slide ea33297150 084/144: Bugfix, commented headings were considered as last headings |
Date: |
Tue, 18 Jan 2022 08:59:43 -0500 (EST) |
branch: elpa/org-tree-slide
commit ea332971503bc178cf7aca1bae34d06bdec5ab21
Author: bennati <st.bennati@gmail.com>
Commit: bennati <st.bennati@gmail.com>
Bugfix, commented headings were considered as last headings
---
org-tree-slide.el | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/org-tree-slide.el b/org-tree-slide.el
index c8a88f735b..66ca22cc79 100644
--- a/org-tree-slide.el
+++ b/org-tree-slide.el
@@ -799,13 +799,13 @@ Profiles:
(defun org-tree-slide--beginning-of-tree ()
"Return beginning point of the line, or t. If the position does not exist in
the buffer, then return nil."
(beginning-of-line)
- (if (org-tree-slide--heading-level-skip-p) ;if the header has to be skipped
+ (if (and (not (org-tree-slide--heading-skip-p)) ;if the header has to be
skipped
+ (org-at-heading-p))
+ (point)
(progn
(outline-previous-heading) ;go to previous heading
(org-tree-slide--beginning-of-tree)) ;recursion until a visible
heading is found
- (if (org-at-heading-p)
- (point)
- (outline-previous-heading)))) ; return position or nil.
+ )) ; return position or nil.
(provide 'org-tree-slide)
- [nongnu] elpa/org-tree-slide 1ab152f87b 047/144: Fix typo README.org, (continued)
- [nongnu] elpa/org-tree-slide 1ab152f87b 047/144: Fix typo README.org, ELPA Syncer, 2022/01/18
- [nongnu] elpa/org-tree-slide b8feee3b60 034/144: Update README, ELPA Syncer, 2022/01/18
- [nongnu] elpa/org-tree-slide b656a838b0 029/144: Update README, ELPA Syncer, 2022/01/18
- [nongnu] elpa/org-tree-slide 085a4e20f3 043/144: Update README, ELPA Syncer, 2022/01/18
- [nongnu] elpa/org-tree-slide 4bf4a2ddd1 021/144: Reduce redundant processing, ELPA Syncer, 2022/01/18
- [nongnu] elpa/org-tree-slide 0a399b24ae 042/144: Update README, ELPA Syncer, 2022/01/18
- [nongnu] elpa/org-tree-slide af59475ce9 040/144: Update README, ELPA Syncer, 2022/01/18
- [nongnu] elpa/org-tree-slide 2e9e91ed4e 050/144: Update README.org, ELPA Syncer, 2022/01/18
- [nongnu] elpa/org-tree-slide fca0042e0c 053/144: Merge pull request #1 from uk-ar/master, ELPA Syncer, 2022/01/18
- [nongnu] elpa/org-tree-slide fe51f9ecfb 057/144: Added hooks for start and stop presentation, ELPA Syncer, 2022/01/18
- [nongnu] elpa/org-tree-slide ea33297150 084/144: Bugfix, commented headings were considered as last headings,
ELPA Syncer <=
- [nongnu] elpa/org-tree-slide fb5d0a8c20 052/144: Support dark color theme, ELPA Syncer, 2022/01/18
- [nongnu] elpa/org-tree-slide a72f5d492d 054/144: Use the latest function, org-at-heading-p, ELPA Syncer, 2022/01/18
- [nongnu] elpa/org-tree-slide 06e1a2855a 061/144: Added some features (issue #2, #5, and #7), ELPA Syncer, 2022/01/18
- [nongnu] elpa/org-tree-slide 362bea826d 077/144: Hide org-clock related code, ELPA Syncer, 2022/01/18
- [nongnu] elpa/org-tree-slide 3b020a663b 082/144: 'COMMENT'-subtree will be hidden (by Stefano), ELPA Syncer, 2022/01/18
- [nongnu] elpa/org-tree-slide 8570335bbd 090/144: Added a tag for Melpa Stable, ELPA Syncer, 2022/01/18
- [nongnu] elpa/org-tree-slide 69e8cd068e 070/144: Refine displaying slide number in modeline, ELPA Syncer, 2022/01/18
- [nongnu] elpa/org-tree-slide caa2a202b5 068/144: Hide skipped slides in CONTENT mode, ELPA Syncer, 2022/01/18
- [nongnu] elpa/org-tree-slide 3927af91ba 078/144: Heading visibility now depends on the value of org-tree-slide-skip-outline-level: if the level of a heading is the last to be displayed, show the full content instead of the children, ELPA Syncer, 2022/01/18
- [nongnu] elpa/org-tree-slide cc42137ed8 085/144: Merge pull request #17 from bennati/presentation-end, ELPA Syncer, 2022/01/18