From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rainer Stengele Subject: Re: Starting agenda commands fail with error: "cond: Wrong type argument: sequencep, :newline" Date: Thu, 11 Jul 2013 12:03:18 +0200 Message-ID: <51DE82E6.1080602@online.de> References: <87r4f5ctvn.fsf@noman.maa.corp.collab.net> <51DE7FB9.2050707@online.de> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39339) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UxDia-00005f-HH for emacs-orgmode@gnu.org; Thu, 11 Jul 2013 06:03:23 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UxDiZ-0001kd-9W for emacs-orgmode@gnu.org; Thu, 11 Jul 2013 06:03:20 -0400 Received: from moutng.kundenserver.de ([212.227.17.8]:56154) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UxDiZ-0001kR-0p for emacs-orgmode@gnu.org; Thu, 11 Jul 2013 06:03:19 -0400 In-Reply-To: <51DE7FB9.2050707@online.de> 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 Cc: emacs-orgmode@gnu.org, Noorul Islam K M Am 11.07.2013 11:49, schrieb Rainer Stengele: > Am 11.07.2013 11:45, schrieb Noorul Islam K M: >> Rainer Stengele writes: >> >>> Hi, >>> >>> since the last pull I cannot start any agenda without getting this message: >>> >>> cond: Wrong type argument: sequencep, :newline >>> >>> setting debug-on-error to t does not show more info. >>> Any idea what could be wrong? >>> >> A fix was pushed recently for this. You might be lagging begind. >> >> Thanks and Regards >> Noorul > I am at > > Org-mode version 8.0.5 (release_8.0.5-334-g203f4c) > That looks pretty current. > Error is still there! > > Cheers, Rainer > > > I already confirmed that this will be fixed by including the patch from Bastien: (see thread "[BUG] org-agenda-list)": 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))) "")))))