From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: [BUG] org-agenda-list Date: Thu, 11 Jul 2013 08:38:58 +0200 Message-ID: <87txk1txbx.fsf@bzg.ath.cx> References: <87d2qp6d23.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39963) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UxAWr-0006en-6n for emacs-orgmode@gnu.org; Thu, 11 Jul 2013 02:39:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UxAWq-0000BZ-8Q for emacs-orgmode@gnu.org; Thu, 11 Jul 2013 02:39:01 -0400 Received: from mail-we0-x22d.google.com ([2a00:1450:400c:c03::22d]:48294) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UxAWq-0000BO-2X for emacs-orgmode@gnu.org; Thu, 11 Jul 2013 02:39:00 -0400 Received: by mail-we0-f173.google.com with SMTP id x54so6579556wes.4 for ; Wed, 10 Jul 2013 23:38:59 -0700 (PDT) In-Reply-To: <87d2qp6d23.fsf@gmail.com> (Nick Dokos's message of "Wed, 10 Jul 2013 22:33:08 -0400") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Nick Dokos Cc: emacs-orgmode@gnu.org --=-=-= Content-Type: text/plain Hi Nick, Nick Dokos 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, --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=newline-grouptag.patch 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))) ""))))) --=-=-= Content-Type: text/plain -- Bastien --=-=-=--