Re: [PD] unexpected behaviour in [route]

2011-02-28 Thread Lorenzo Sutton
Hi, I took the liberty to expand the OP's patch hopefully clearing some doubts (warning fairly wide window). Lorenzo Mathieu Bouchard wrote: On Sun, 27 Feb 2011, Jonathan Wilkes wrote: Route checks the first element of a message against each of its arguments, [...] The part before the

Re: [PD] unexpected behaviour in [route]

2011-02-28 Thread rene beekman
in the original message. Jonathan's explanation (below) seems to explain why that would be the case. Thanks! Date: Sun, 27 Feb 2011 15:43:53 -0800 (PST) From: Jonathan Wilkes jancs...@yahoo.com Subject: Re: [PD] unexpected behaviour in [route] In your quote of Miller's help patch you left off

[PD] unexpected behaviour in [route]

2011-02-27 Thread rene beekman
I'm preparing some patches for courses that I teach and I noticed behaviour in [route] that I found unexpected or at least inconsistent. Attached is a patch that demonstrates the problem. In short: when mixing types of arguments for [route], the object will fail to properly route a float if the

Re: [PD] unexpected behaviour in [route]

2011-02-27 Thread Jack
This is not a bug. Just do something like this to avoid any problem : [route number number number ...]/[route word word word ...] ++ Jack Le dimanche 27 février 2011 à 22:46 +0200, rene beekman a écrit : I'm preparing some patches for courses that I teach and I noticed behaviour in [route]

Re: [PD] unexpected behaviour in [route]

2011-02-27 Thread Pedro Lopes
The first paragraph of route-help states: which maybe numbers or symbols (but not a mixture of the two unless the datatypes are defined explicitly) Its the answer. See the help patch. On Sun, Feb 27, 2011 at 10:40 PM, Jack j...@rybn.org wrote: This is not a bug. Just do something like this

Re: [PD] unexpected behaviour in [route]

2011-02-27 Thread Jonathan Wilkes
as the questioner magically realizes to ignore everything before the comma. * The parenthesis should be inside the period. -Jonathan --- On Sun, 2/27/11, Pedro Lopes pedro.lo...@ist.utl.pt wrote: From: Pedro Lopes pedro.lo...@ist.utl.pt Subject: Re: [PD] unexpected behaviour in [route] To: Jack j...@rybn.org

Re: [PD] unexpected behaviour in [route]

2011-02-27 Thread Mathieu Bouchard
On Sun, 27 Feb 2011, Jonathan Wilkes wrote: Route checks the first element of a message against each of its arguments, [...] The part before the comma is wrong-- that's not how [route] works.  The reality is: 1) If the first arg is a symbol atom, then [route] is put in selector mode and

Re: [PD] unexpected behaviour in [route]

2011-02-27 Thread Mathieu Bouchard
On Sun, 27 Feb 2011, rene beekman wrote: I'm preparing some patches for courses that I teach and I noticed behaviour in [route] that I found unexpected or at least inconsistent. Attached is a patch that demonstrates the problem. In short: when mixing types of arguments for [route], the object