Hi Nick, Nick Dokos <ndo...@gmail.com> writes:
> I just pulled and I get the attached backtrace from org-agenda-list. > I tried with -q -l minimal.emacs and it's still there. > It's probably caused by commit 42691788273cecb75ec620d40cc5394d2cd95ed1. > When I revert that, the agenda comes up properly. I'm in a hurry and can't really test right now. Can you confirm the following patch fixes it for you? Thanks,
diff --git a/lisp/org.el b/lisp/org.el index 7cbad97..f8cd447 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -4841,6 +4841,7 @@ Support for group tags is controlled by the option (lambda (tg) (cond ((eq (car tg) :startgroup) "{") ((eq (car tg) :endgroup) "}") ((eq (car tg) :grouptags) ":") + ((eq (car tg) :newline) "\n") (t (concat (car tg) (if (characterp (cdr tg)) (format "(%s)" (char-to-string (cdr tg))) "")))))
-- Bastien