emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Starting agenda commands fail with error: "cond: Wrong type argument: sequencep, :newline"
@ 2013-07-11  9:02 Rainer Stengele
  2013-07-11  9:45 ` Noorul Islam K M
  0 siblings, 1 reply; 6+ messages in thread
From: Rainer Stengele @ 2013-07-11  9:02 UTC (permalink / raw)
  To: emacs-orgmode

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?

Regards, Rainer

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Starting agenda commands fail with error: "cond: Wrong type argument: sequencep, :newline"
  2013-07-11  9:02 Starting agenda commands fail with error: "cond: Wrong type argument: sequencep, :newline" Rainer Stengele
@ 2013-07-11  9:45 ` Noorul Islam K M
  2013-07-11  9:49   ` Rainer Stengele
  0 siblings, 1 reply; 6+ messages in thread
From: Noorul Islam K M @ 2013-07-11  9:45 UTC (permalink / raw)
  To: Rainer Stengele; +Cc: emacs-orgmode

Rainer Stengele <rainer.stengele@online.de> 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

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Starting agenda commands fail with error: "cond: Wrong type argument: sequencep, :newline"
  2013-07-11  9:45 ` Noorul Islam K M
@ 2013-07-11  9:49   ` Rainer Stengele
  2013-07-11 10:03     ` Rainer Stengele
  2013-07-11 10:13     ` Noorul Islam K M
  0 siblings, 2 replies; 6+ messages in thread
From: Rainer Stengele @ 2013-07-11  9:49 UTC (permalink / raw)
  To: Noorul Islam K M; +Cc: emacs-orgmode

Am 11.07.2013 11:45, schrieb Noorul Islam K M:
> Rainer Stengele <rainer.stengele@online.de> 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

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Starting agenda commands fail with error: "cond: Wrong type argument: sequencep, :newline"
  2013-07-11  9:49   ` Rainer Stengele
@ 2013-07-11 10:03     ` Rainer Stengele
  2013-07-11 10:13     ` Noorul Islam K M
  1 sibling, 0 replies; 6+ messages in thread
From: Rainer Stengele @ 2013-07-11 10:03 UTC (permalink / raw)
  Cc: emacs-orgmode, 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 <rainer.stengele@online.de> 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))) "")))))

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: Starting agenda commands fail with error: "cond: Wrong type argument: sequencep, :newline"
  2013-07-11  9:49   ` Rainer Stengele
  2013-07-11 10:03     ` Rainer Stengele
@ 2013-07-11 10:13     ` Noorul Islam K M
  2013-07-11 12:34       ` Bastien
  1 sibling, 1 reply; 6+ messages in thread
From: Noorul Islam K M @ 2013-07-11 10:13 UTC (permalink / raw)
  To: Rainer Stengele; +Cc: emacs-orgmode

Rainer Stengele <rainer.stengele@online.de> writes:

> Am 11.07.2013 11:45, schrieb Noorul Islam K M:
>
>> Rainer Stengele <rainer.stengele@online.de> 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!
>

My bad, it was a patch submitted to the list for verification. Someone
has verified it. Let us wait for this to be committed.

The thread's subject line is: [BUG] org-agenda-list

Thanks and Regards
Noorul

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Starting agenda commands fail with error: "cond: Wrong type argument: sequencep, :newline"
  2013-07-11 10:13     ` Noorul Islam K M
@ 2013-07-11 12:34       ` Bastien
  0 siblings, 0 replies; 6+ messages in thread
From: Bastien @ 2013-07-11 12:34 UTC (permalink / raw)
  To: Noorul Islam K M; +Cc: Rainer Stengele, emacs-orgmode

Hi Noorul,

Noorul Islam K M <noorul@noorul.com> writes:

> My bad, it was a patch submitted to the list for verification. Someone
> has verified it. Let us wait for this to be committed.

Done, thanks!

-- 
 Bastien

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2013-07-11 12:34 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-07-11  9:02 Starting agenda commands fail with error: "cond: Wrong type argument: sequencep, :newline" Rainer Stengele
2013-07-11  9:45 ` Noorul Islam K M
2013-07-11  9:49   ` Rainer Stengele
2013-07-11 10:03     ` Rainer Stengele
2013-07-11 10:13     ` Noorul Islam K M
2013-07-11 12:34       ` Bastien

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).