|
@@ -8636,13 +8636,13 @@ This is a command that has to be installed in `calendar-mode-map'."
|
|
|
(defun org-agenda-bulk-mark-regexp (regexp)
|
|
|
"Mark entries match REGEXP."
|
|
|
(interactive "sMark entries matching regexp: ")
|
|
|
- (let (entries-marked)
|
|
|
+ (let ((entries-marked 0))
|
|
|
(save-excursion
|
|
|
(goto-char (point-min))
|
|
|
(goto-char (next-single-property-change (point) 'txt))
|
|
|
(while (re-search-forward regexp nil t)
|
|
|
(when (string-match regexp (get-text-property (point) 'txt))
|
|
|
- (setq entries-marked (+ entries-marked 1))
|
|
|
+ (setq entries-marked (1+ entries-marked))
|
|
|
(call-interactively 'org-agenda-bulk-mark))))
|
|
|
(if (not entries-marked)
|
|
|
(message "No entry matching this regexp."))))
|