[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[O] [PATCH 1/5] Extend scope 'region to include body of last headline in
From: |
David Maus |
Subject: |
[O] [PATCH 1/5] Extend scope 'region to include body of last headline in active region |
Date: |
Thu, 25 Aug 2011 06:25:30 +0200 |
* org.el (org-map-entries): Extend scope 'region to include entire
body of last headline in active region.
---
lisp/org.el | 8 ++++++--
1 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/lisp/org.el b/lisp/org.el
index de8c72b..b69b77c 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -13633,8 +13633,12 @@ a *different* entry, you cannot use these techniques."
(org-narrow-to-subtree)
(setq scope nil))
((and (eq scope 'region) (org-region-active-p))
- (narrow-to-region (region-beginning) (region-end))
- (setq scope nil)))
+ (let ((end (save-excursion
+ (goto-char (region-end))
+ (outline-next-heading)
+ (point))))
+ (narrow-to-region (region-beginning) end)
+ (setq scope nil))))
(if (not scope)
(progn
--
1.7.2.5
- Re: [O] New feature: loop over siblings for some commands, David Maus, 2011/08/10
- Re: [O] New feature: loop over siblings for some commands, David Maus, 2011/08/12
- Re: [O] New feature: loop over siblings for some commands, Bastien, 2011/08/16
- [O] [PATCH 0/5] loop over headlines in active region, David Maus, 2011/08/25
- Re: [O] [PATCH 0/5] loop over headlines in active region, Carsten Dominik, 2011/08/25
- Re: [O] [PATCH 0/5] loop over headlines in active region, David Maus, 2011/08/28
- Re: [O] [PATCH 0/5] loop over headlines in active region, Carsten Dominik, 2011/08/29
- Re: [O] [PATCH 0/5] loop over headlines in active region, David Maus, 2011/08/30
- Re: [O] [PATCH 0/5] loop over headlines in active region, Štěpán Němec, 2011/08/25
- Re: [O] [PATCH 0/5] loop over headlines in active region, David Maus, 2011/08/28
- [O] [PATCH 1/5] Extend scope 'region to include body of last headline in active region,
David Maus <=
- Re: [O] [PATCH 1/5] Extend scope 'region to include body of last headline in active region, Carsten Dominik, 2011/08/25
- Re: [O] [PATCH 1/5] Extend scope 'region to include body of last headline in active region, David Maus, 2011/08/30
- [O] [PATCH 2/5] Immediately return if scope is region but no region is active, David Maus, 2011/08/25
- Re: [O] [PATCH 2/5] Immediately return if scope is region but no region is active, Carsten Dominik, 2011/08/25
- Re: [O] [PATCH 2/5] Immediately return if scope is region but no region is active, David Maus, 2011/08/28
- Re: [O] [PATCH 2/5] Immediately return if scope is region but no region is active, Carsten Dominik, 2011/08/29
- Re: [O] [PATCH 2/5] Immediately return if scope is region but no region is active, David Maus, 2011/08/30
- [O] [PATCH 3/5] New customization variable: Loop over headlines in active region, David Maus, 2011/08/25
- [O] [PATCH 4/5] Skip invisible headlines when mapping over headlines in active region, David Maus, 2011/08/25
- [O] [PATCH 5/5] Avoid conflict between bulk command and loop-over-headlines, David Maus, 2011/08/25