Latest git.
setq: Wrong type argument: number-or-marker-p, nil
+(nil 1)
(setq entries-marked (+ entries-marked 1))
(progn (setq entries-marked (+ entries-marked 1))
(call-interactively (quote org-agenda-bulk-mark)))
(if (string-match regexp (get-text-property ... ...)) (progn (setq
entries-marked ...) (call-interactively ...)))
(when (string-match regexp (get-text-property ... ...)) (setq
entries-marked (+ entries-marked 1)) (call-interactively (quote
org-agenda-bulk-mark)))
(while (re-search-forward regexp nil t) (when (string-match regexp
...) (setq entries-marked ...) (call-interactively ...)))
(save-excursion (goto-char (point-min)) (goto-char
(next-single-property-change ... ...)) (while (re-search-forward
regexp nil t) (when ... ... ...)))
(let (entries-marked) (save-excursion (goto-char ...) (goto-char
...) (while ... ...)) (if (not entries-marked) (message "No entry
matching this regexp.")))
org-agenda-bulk-mark-regexp("e")
call-interactively(org-agenda-bulk-mark-regexp)
Thanks.