summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarcowahlsoft@gmail.com <marcowahlsoft@gmail.com>2014-09-20 22:26:18 +0200
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2014-09-20 23:01:51 +0200
commit60418c5ca82a5d8f16cfb2e8cb672a6637f5c363 (patch)
treec4c7c4898f5c9f88a03acee53d185bd3dd9a0aa9
parent1113e3e0278e6601988abfc58e3c32939f445d80 (diff)
downloadorg-mode-60418c5ca82a5d8f16cfb2e8cb672a6637f5c363.tar.gz
Fix to determine a bulk-markable line
* lisp/org-agenda.el (org-agenda-bulk-mark, org-agenda-bulk-mark-regexp, org-agenda-bulk-toggle-all): This fixes e.g. org-agenda-bulk-mark-all when time-grid is shown. TINYCHANGE
-rw-r--r--lisp/org-agenda.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el
index 4b6385b..6f9db51 100644
--- a/lisp/org-agenda.el
+++ b/lisp/org-agenda.el
@@ -9627,7 +9627,7 @@ This is a command that has to be installed in `calendar-mode-map'."
(overlay-put ov 'type 'org-marked-entry-overlay))
(end-of-line 1)
(or (ignore-errors
- (goto-char (next-single-property-change (point) 'txt)))
+ (goto-char (next-single-property-change (point) 'org-hd-marker)))
(beginning-of-line 2))
(while (and (get-char-property (point) 'invisible) (not (eobp)))
(beginning-of-line 2))
@@ -9645,7 +9645,7 @@ This is a command that has to be installed in `calendar-mode-map'."
(let ((entries-marked 0) txt-at-point)
(save-excursion
(goto-char (point-min))
- (goto-char (next-single-property-change (point) 'txt))
+ (goto-char (next-single-property-change (point) 'org-hd-marker))
(while (and (re-search-forward regexp nil t)
(setq txt-at-point (get-text-property (point) 'txt)))
(when (string-match regexp txt-at-point)
@@ -9681,7 +9681,7 @@ This is a command that has to be installed in `calendar-mode-map'."
(save-excursion
(goto-char (point-min))
(while (ignore-errors
- (goto-char (next-single-property-change (point) 'txt)))
+ (goto-char (next-single-property-change (point) 'org-hd-marker)))
(org-agenda-bulk-toggle))))
(defun org-agenda-bulk-toggle ()