SF.net SVN: supercollider:[9090] trunk/build/SCClassLibrary/Common/Streams/ Stream.sc

View: New views
8 Messages — Rating Filter:   Alert me  

SF.net SVN: supercollider:[9090] trunk/build/SCClassLibrary/Common/Streams/ Stream.sc

by rkuivila :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Revision: 9090
          http://supercollider.svn.sourceforge.net/supercollider/?rev=9090&view=rev
Author:   rkuivila
Date:     2009-04-21 12:42:55 +0000 (Tue, 21 Apr 2009)

Log Message:
-----------
eliminated redundant pointer to EventStreamObject in the routine that wraps prNext.

Modified Paths:
--------------
    trunk/build/SCClassLibrary/Common/Streams/Stream.sc

Modified: trunk/build/SCClassLibrary/Common/Streams/Stream.sc
===================================================================
--- trunk/build/SCClassLibrary/Common/Streams/Stream.sc 2009-04-21 11:19:04 UTC (rev 9089)
+++ trunk/build/SCClassLibrary/Common/Streams/Stream.sc 2009-04-21 12:42:55 UTC (rev 9090)
@@ -503,9 +503,8 @@
  }
 
  init {
- var me = this;
  cleanup = EventStreamCleanup.new;
- routine = Routine{\xCA| inTime |\xCAloop { inTime =\xCAme.prNext(inTime).yield } };
+ routine = Routine{\xCA| inTime |\xCAloop { inTime =\xCAthis.prNext(inTime).yield } };
  }
 
  // freeNodes is passed as false from


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.

_______________________________________________
sc-dev mailing list

info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
archive: http://www.listarc.bham.ac.uk/marchives/sc-dev/
search: http://www.listarc.bham.ac.uk/lists/sc-dev/search/

Re: SF.net SVN: supercollider:[9090] trunk/build/SCClassLibrary/Common/Streams/ Stream.sc

by Julian Rohrhuber :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

>Revision: 9090
>
>http://supercollider.svn.sourceforge.net/supercollider/?rev=9090&view=rev
>Author:   rkuivila
>Date:     2009-04-21 12:42:55 +0000 (Tue, 21 Apr 2009)
>
>Log Message:
>-----------
>eliminated redundant pointer to EventStreamObject in the routine
>that wraps prNext.
>
>Modified Paths:
>--------------
>     trunk/build/SCClassLibrary/Common/Streams/Stream.sc
>
>Modified: trunk/build/SCClassLibrary/Common/Streams/Stream.sc
>===================================================================
>--- trunk/build/SCClassLibrary/Common/Streams/Stream.sc
> 2009-04-21 11:19:04 UTC (rev 9089)
>+++ trunk/build/SCClassLibrary/Common/Streams/Stream.sc
> 2009-04-21 12:42:55 UTC (rev 9090)
>@@ -503,9 +503,8 @@
>   }
>
>   init {
>- var me = this;
>   cleanup = EventStreamCleanup.new;
>- routine = Routine{\xCA| inTime |\xCAloop { inTime
>=\xCAme.prNext(inTime).yield } };
>+ routine = Routine{\xCA| inTime |\xCAloop { inTime
>=\xCAthis.prNext(inTime).yield } };
>   }
>

strange characters in the code - maybe need to be spaces?
a question - what was changed and why?
--





.

_______________________________________________
sc-dev mailing list

info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
archive: http://www.listarc.bham.ac.uk/marchives/sc-dev/
search: http://www.listarc.bham.ac.uk/lists/sc-dev/search/

Re: SF.net SVN: supercollider:[9090] trunk/build/SCClassLibrary/Common/Streams/ Stream.sc

by ronald kuivila :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi Julian,

   I just updated and the (Second) commit looks fine.

Explanation:

   EventStreamPlayer needs to perfrom Events from within a Routine to  
permit calls to Serve:sync.
   The first hack at this was simply to run a Routine that sends next  
messages to the ESP.  (That is what we did at the symposium.)

   James points out that this breaks CmdPeriod, which in this new  
arrangement removes the routine from the clock queue,
not the ESP.  So EventStreamPlayer:removedFromScheduler is never  
called, no clean up is performed, etc, etc.

  Thus, the ESP has to be in the clock's queue.  The solution is to  
have a new ESP:next which simply calls a Routine which then
calls ESP:prNext (the old ESP:next).


RJK



On Apr 21, 2009, at 10:46 AM, Julian Rohrhuber wrote:

>> Revision: 9090
>> http://supercollider.svn.sourceforge.net/supercollider/?rev=9090&view=rev
>> Author:   rkuivila
>> Date:     2009-04-21 12:42:55 +0000 (Tue, 21 Apr 2009)
>>
>> Log Message:
>> -----------
>> eliminated redundant pointer to EventStreamObject in the routine  
>> that wraps prNext.
>>
>> Modified Paths:
>> --------------
>>    trunk/build/SCClassLibrary/Common/Streams/Stream.sc
>>
>> Modified: trunk/build/SCClassLibrary/Common/Streams/Stream.sc
>> ===================================================================
>> --- trunk/build/SCClassLibrary/Common/Streams/Stream.sc 2009-04-21  
>> 11:19:04 UTC (rev 9089)
>> +++ trunk/build/SCClassLibrary/Common/Streams/Stream.sc 2009-04-21  
>> 12:42:55 UTC (rev 9090)
>> @@ -503,9 +503,8 @@
>> }
>>
>> init {
>> - var me = this;
>> cleanup = EventStreamCleanup.new;
>> - routine = Routine{\xCA| inTime |\xCAloop { inTime =
>> \xCAme.prNext(inTime).yield } };
>> + routine = Routine{\xCA| inTime |\xCAloop { inTime =
>> \xCAthis.prNext(inTime).yield } };
>> }
>>
>
> strange characters in the code - maybe need to be spaces?
> a question - what was changed and why?
> --
>
>
>
>
>
> .
>
> _______________________________________________
> sc-dev mailing list
>
> info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
> archive: http://www.listarc.bham.ac.uk/marchives/sc-dev/
> search: http://www.listarc.bham.ac.uk/lists/sc-dev/search/
>


_______________________________________________
sc-dev mailing list

info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
archive: http://www.listarc.bham.ac.uk/marchives/sc-dev/
search: http://www.listarc.bham.ac.uk/lists/sc-dev/search/

Re: SF.net SVN: supercollider:[9090] trunk/build/SCClassLibrary/Common/Streams/ Stream.sc

by Dan Stowell :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

2009/4/21, ronald kuivila <rkuivila@...>:
> Hi Julian,
>
>   I just updated and the (Second) commit looks fine.

It might look fine to you but the commit log is a good indication that
you dropped in a couple of gremlin characters.

Some keyboards make it easy to accidentally press alt+space instead of
space, apparently...? The "\xCA" items in the commit log show where
they are. Please fix those gremlin characters... they can cause
problems, not neccessarily for you...

Dan


>  On Apr 21, 2009, at 10:46 AM, Julian Rohrhuber wrote:
>
>
> >
> > > Revision: 9090
> > >
> http://supercollider.svn.sourceforge.net/supercollider/?rev=9090&view=rev
> > > Author:   rkuivila
> > > Date:     2009-04-21 12:42:55 +0000 (Tue, 21 Apr 2009)
> > >
> > > Log Message:
> > > -----------
> > > eliminated redundant pointer to EventStreamObject in the routine that
> wraps prNext.
> > >
> > > Modified Paths:
> > > --------------
> > >   trunk/build/SCClassLibrary/Common/Streams/Stream.sc
> > >
> > > Modified:
> trunk/build/SCClassLibrary/Common/Streams/Stream.sc
> > >
> ===================================================================
> > > --- trunk/build/SCClassLibrary/Common/Streams/Stream.sc
>         2009-04-21 11:19:04 UTC (rev 9089)
> > > +++ trunk/build/SCClassLibrary/Common/Streams/Stream.sc
>         2009-04-21 12:42:55 UTC (rev 9090)
> > > @@ -503,9 +503,8 @@
> > >        }
> > >
> > >        init {
> > > -               var me = this;
> > >                cleanup = EventStreamCleanup.new;
> > > -               routine = Routine{\xCA| inTime |\xCAloop { inTime
> =\xCAme.prNext(inTime).yield } };
> > > +               routine = Routine{\xCA| inTime |\xCAloop { inTime
> =\xCAthis.prNext(inTime).yield } };
> > >        }
> > >
> > >
> >
> > strange characters in the code - maybe need to be spaces?
> > a question - what was changed and why?
> > --
> >
> >
> >
> >
> >
> > .
> >
> > _______________________________________________
> > sc-dev mailing list
> >
> > info (subscription, etc.):
> http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
> > archive: http://www.listarc.bham.ac.uk/marchives/sc-dev/
> > search:
> http://www.listarc.bham.ac.uk/lists/sc-dev/search/
> >
> >
>
>
>  _______________________________________________
>  sc-dev mailing list
>
>  info (subscription, etc.):
> http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
>  archive: http://www.listarc.bham.ac.uk/marchives/sc-dev/
>  search: http://www.listarc.bham.ac.uk/lists/sc-dev/search/
>


--
http://www.mcld.co.uk

_______________________________________________
sc-dev mailing list

info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
archive: http://www.listarc.bham.ac.uk/marchives/sc-dev/
search: http://www.listarc.bham.ac.uk/lists/sc-dev/search/

Re: SF.net SVN: supercollider:[9090] trunk/build/SCClassLibrary/Common/Streams/ Stream.sc

by ronald kuivila :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hey Dan,

  Done.
  BTW: is there any way to check for gremlins from within Document?

RJK

On Apr 21, 2009, at 11:52 AM, Dan Stowell wrote:

> 2009/4/21, ronald kuivila <rkuivila@...>:
>> Hi Julian,
>>
>>  I just updated and the (Second) commit looks fine.
>
> It might look fine to you but the commit log is a good indication that
> you dropped in a couple of gremlin characters.
>
> Some keyboards make it easy to accidentally press alt+space instead of
> space, apparently...? The "\xCA" items in the commit log show where
> they are. Please fix those gremlin characters... they can cause
> problems, not neccessarily for you...
>
> Dan
>
>
>> On Apr 21, 2009, at 10:46 AM, Julian Rohrhuber wrote:
>>
>>
>>>
>>>> Revision: 9090
>>>>
>> http://supercollider.svn.sourceforge.net/supercollider/?rev=9090&view=rev
>>>> Author:   rkuivila
>>>> Date:     2009-04-21 12:42:55 +0000 (Tue, 21 Apr 2009)
>>>>
>>>> Log Message:
>>>> -----------
>>>> eliminated redundant pointer to EventStreamObject in the routine  
>>>> that
>> wraps prNext.
>>>>
>>>> Modified Paths:
>>>> --------------
>>>>  trunk/build/SCClassLibrary/Common/Streams/Stream.sc
>>>>
>>>> Modified:
>> trunk/build/SCClassLibrary/Common/Streams/Stream.sc
>>>>
>> ===================================================================
>>>> --- trunk/build/SCClassLibrary/Common/Streams/Stream.sc
>>        2009-04-21 11:19:04 UTC (rev 9089)
>>>> +++ trunk/build/SCClassLibrary/Common/Streams/Stream.sc
>>        2009-04-21 12:42:55 UTC (rev 9090)
>>>> @@ -503,9 +503,8 @@
>>>>       }
>>>>
>>>>       init {
>>>> -               var me = this;
>>>>               cleanup = EventStreamCleanup.new;
>>>> -               routine = Routine{\xCA| inTime |\xCAloop { inTime
>> =\xCAme.prNext(inTime).yield } };
>>>> +               routine = Routine{\xCA| inTime |\xCAloop { inTime
>> =\xCAthis.prNext(inTime).yield } };
>>>>       }
>>>>
>>>>
>>>
>>> strange characters in the code - maybe need to be spaces?
>>> a question - what was changed and why?
>>> --
>>>
>>>
>>>
>>>
>>>
>>> .
>>>
>>> _______________________________________________
>>> sc-dev mailing list
>>>
>>> info (subscription, etc.):
>> http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
>>> archive: http://www.listarc.bham.ac.uk/marchives/sc-dev/
>>> search:
>> http://www.listarc.bham.ac.uk/lists/sc-dev/search/
>>>
>>>
>>
>>
>> _______________________________________________
>> sc-dev mailing list
>>
>> info (subscription, etc.):
>> http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
>> archive: http://www.listarc.bham.ac.uk/marchives/sc-dev/
>> search: http://www.listarc.bham.ac.uk/lists/sc-dev/search/
>>
>
>
> --
> http://www.mcld.co.uk
>
> _______________________________________________
> sc-dev mailing list
>
> info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
> archive: http://www.listarc.bham.ac.uk/marchives/sc-dev/
> search: http://www.listarc.bham.ac.uk/lists/sc-dev/search/
>


_______________________________________________
sc-dev mailing list

info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
archive: http://www.listarc.bham.ac.uk/marchives/sc-dev/
search: http://www.listarc.bham.ac.uk/lists/sc-dev/search/

Re: SF.net SVN: supercollider:[9090] trunk/build/SCClassLibrary/Common/Streams/ Stream.sc

by Alberto de Campo-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

hi ron, there is, attached.

best,
adc

>Hey Dan,
>
>  Done.
>  BTW: is there any way to check for gremlins from within Document?
>
>RJK
>
>On Apr 21, 2009, at 11:52 AM, Dan Stowell wrote:
>
>>2009/4/21, ronald kuivila <rkuivila@...>:
>>>Hi Julian,
>>>
>>>  I just updated and the (Second) commit looks fine.
>>
>>It might look fine to you but the commit log is a good indication that
>>you dropped in a couple of gremlin characters.
>>
>>Some keyboards make it easy to accidentally press alt+space instead of
>>space, apparently...? The "\xCA" items in the commit log show where
>>they are. Please fix those gremlin characters... they can cause
>>problems, not neccessarily for you...
>>
>>Dan
>>
>>>On Apr 21, 2009, at 10:46 AM, Julian Rohrhuber wrote:
>>>
>>>>
>>>>>Revision: 9090
>>>>>
>>>http://supercollider.svn.sourceforge.net/supercollider/?rev=9090&view=rev
>>>>>Author:   rkuivila
>>>>>Date:     2009-04-21 12:42:55 +0000 (Tue, 21 Apr 2009)
>>>>>
>>>>>Log Message:
>>>>>-----------
>>>>>eliminated redundant pointer to EventStreamObject in the routine that
>>>wraps prNext.
>>>>>
>>>>>Modified Paths:
>>>>>--------------
>>>>>  trunk/build/SCClassLibrary/Common/Streams/Stream.sc
>>>>>
>>>>>Modified:
>>>trunk/build/SCClassLibrary/Common/Streams/Stream.sc
>>>>>
>>>===================================================================
>>>>>--- trunk/build/SCClassLibrary/Common/Streams/Stream.sc
>>>        2009-04-21 11:19:04 UTC (rev 9089)
>>>>>+++ trunk/build/SCClassLibrary/Common/Streams/Stream.sc
>>>        2009-04-21 12:42:55 UTC (rev 9090)
>>>>>@@ -503,9 +503,8 @@
>>>>>       }
>>>>>
>>>>>       init {
>>>>>-               var me = this;
>>>>>               cleanup = EventStreamCleanup.new;
>>>>>-               routine = Routine{\xCA| inTime |\xCAloop { inTime
>>>=\xCAme.prNext(inTime).yield } };
>>>>>+               routine = Routine{\xCA| inTime |\xCAloop { inTime
>>>=\xCAthis.prNext(inTime).yield } };
>>>>>       }
>>>>>
>>>>
>>>>strange characters in the code - maybe need to be spaces?
>>>>a question - what was changed and why?
>>>>--
>>>>
>>>>
>>>>
>>>>
>>>>
>>>>.
>>>>
>>>>_______________________________________________
>>>>sc-dev mailing list
>>>>
>>>>info (subscription, etc.):
>>>http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
>>>>archive: http://www.listarc.bham.ac.uk/marchives/sc-dev/
>>>>search:
>>>http://www.listarc.bham.ac.uk/lists/sc-dev/search/
>>>>
>>>>
>>>
>>>
>>>_______________________________________________
>>>sc-dev mailing list
>>>
>>>info (subscription, etc.):
>>>http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
>>>archive: http://www.listarc.bham.ac.uk/marchives/sc-dev/
>>>search: http://www.listarc.bham.ac.uk/lists/sc-dev/search/
>>>
>>
>>
>>--
>>http://www.mcld.co.uk
>>
>>_______________________________________________
>>sc-dev mailing list
>>
>>info (subscription, etc.):
>>http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
>>archive: http://www.listarc.bham.ac.uk/marchives/sc-dev/
>>search: http://www.listarc.bham.ac.uk/lists/sc-dev/search/
>>
>
>
>_______________________________________________
>sc-dev mailing list
>
>info (subscription, etc.):
>http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
>archive: http://www.listarc.bham.ac.uk/marchives/sc-dev/
>search: http://www.listarc.bham.ac.uk/lists/sc-dev/search/

--
--
Alberto de Campo
Bergstrasse 59/33
A-8020 Graz, Austria
e-mail : adc@...
--


%extStringClean.sc (176 bytes) Download Attachment
extStringClean.sc (2K) Download Attachment

Re: SF.net SVN: supercollider:[9090] trunk/build/SCClassLibrary/Common/Streams/ Stream.sc

by ronald kuivila :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Thanks Alberto!

RJK

On Apr 21, 2009, at 12:14 PM, Alberto de Campo wrote:

> hi ron, there is, attached.
>
> best,
> adc
>
>> Hey Dan,
>>
>> Done.
>> BTW: is there any way to check for gremlins from within Document?
>>
>> RJK
>>
>> On Apr 21, 2009, at 11:52 AM, Dan Stowell wrote:
>>
>>> 2009/4/21, ronald kuivila <rkuivila@...>:
>>>> Hi Julian,
>>>>
>>>> I just updated and the (Second) commit looks fine.
>>>
>>> It might look fine to you but the commit log is a good indication  
>>> that
>>> you dropped in a couple of gremlin characters.
>>>
>>> Some keyboards make it easy to accidentally press alt+space  
>>> instead of
>>> space, apparently...? The "\xCA" items in the commit log show where
>>> they are. Please fix those gremlin characters... they can cause
>>> problems, not neccessarily for you...
>>>
>>> Dan
>>>
>>>> On Apr 21, 2009, at 10:46 AM, Julian Rohrhuber wrote:
>>>>
>>>>>
>>>>>> Revision: 9090
>>>>>>
>>>> http://supercollider.svn.sourceforge.net/supercollider/?rev=9090&view=rev
>>>>>> Author:   rkuivila
>>>>>> Date:     2009-04-21 12:42:55 +0000 (Tue, 21 Apr 2009)
>>>>>>
>>>>>> Log Message:
>>>>>> -----------
>>>>>> eliminated redundant pointer to EventStreamObject in the  
>>>>>> routine that
>>>> wraps prNext.
>>>>>>
>>>>>> Modified Paths:
>>>>>> --------------
>>>>>> trunk/build/SCClassLibrary/Common/Streams/Stream.sc
>>>>>>
>>>>>> Modified:
>>>> trunk/build/SCClassLibrary/Common/Streams/Stream.sc
>>>>>>
>>>> ===================================================================
>>>>>> --- trunk/build/SCClassLibrary/Common/Streams/Stream.sc
>>>>       2009-04-21 11:19:04 UTC (rev 9089)
>>>>>> +++ trunk/build/SCClassLibrary/Common/Streams/Stream.sc
>>>>       2009-04-21 12:42:55 UTC (rev 9090)
>>>>>> @@ -503,9 +503,8 @@
>>>>>>      }
>>>>>>
>>>>>>      init {
>>>>>> -               var me = this;
>>>>>>              cleanup = EventStreamCleanup.new;
>>>>>> -               routine = Routine{\xCA| inTime |\xCAloop { inTime
>>>> =\xCAme.prNext(inTime).yield } };
>>>>>> +               routine = Routine{\xCA| inTime |\xCAloop { inTime
>>>> =\xCAthis.prNext(inTime).yield } };
>>>>>>      }
>>>>>>
>>>>>
>>>>> strange characters in the code - maybe need to be spaces?
>>>>> a question - what was changed and why?
>>>>> --
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> .
>>>>>
>>>>> _______________________________________________
>>>>> sc-dev mailing list
>>>>>
>>>>> info (subscription, etc.):
>>>> http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
>>>>> archive: http://www.listarc.bham.ac.uk/marchives/sc-dev/
>>>>> search:
>>>> http://www.listarc.bham.ac.uk/lists/sc-dev/search/
>>>>>
>>>>>
>>>>
>>>>
>>>> _______________________________________________
>>>> sc-dev mailing list
>>>>
>>>> info (subscription, etc.):
>>>> http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
>>>> archive: http://www.listarc.bham.ac.uk/marchives/sc-dev/
>>>> search: http://www.listarc.bham.ac.uk/lists/sc-dev/search/
>>>>
>>>
>>>
>>> --
>>> http://www.mcld.co.uk
>>>
>>> _______________________________________________
>>> sc-dev mailing list
>>>
>>> info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
>>> archive: http://www.listarc.bham.ac.uk/marchives/sc-dev/
>>> search: http://www.listarc.bham.ac.uk/lists/sc-dev/search/
>>>
>>
>>
>> _______________________________________________
>> sc-dev mailing list
>>
>> info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
>> archive: http://www.listarc.bham.ac.uk/marchives/sc-dev/
>> search: http://www.listarc.bham.ac.uk/lists/sc-dev/search/
>
>
> --
> --
> Alberto de Campo
> Bergstrasse 59/33
> A-8020 Graz, Austria
> e-mail : adc@...
> --<extStringClean.sc>


_______________________________________________
sc-dev mailing list

info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
archive: http://www.listarc.bham.ac.uk/marchives/sc-dev/
search: http://www.listarc.bham.ac.uk/lists/sc-dev/search/

Re: SF.net SVN: supercollider:[9090] trunk/build/SCClassLibrary/Common/Streams/ Stream.sc

by Sciss-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

ah... useful, thanks!

Am 21.04.2009 um 18:14 schrieb Alberto de Campo:

> hi ron, there is, attached.
>
> best,
> adc
>
>> Hey Dan,
>>
>>  Done.
>>  BTW: is there any way to check for gremlins from within Document?
>>
>> RJK
>>
>> On Apr 21, 2009, at 11:52 AM, Dan Stowell wrote:
>>
>>> 2009/4/21, ronald kuivila <rkuivila@...>:
>>>> Hi Julian,
>>>>
>>>>  I just updated and the (Second) commit looks fine.
>>>
>>> It might look fine to you but the commit log is a good indication  
>>> that
>>> you dropped in a couple of gremlin characters.
>>>
>>> Some keyboards make it easy to accidentally press alt+space  
>>> instead of
>>> space, apparently...? The "\xCA" items in the commit log show where
>>> they are. Please fix those gremlin characters... they can cause
>>> problems, not neccessarily for you...
>>>
>>> Dan
>>>
>>>> On Apr 21, 2009, at 10:46 AM, Julian Rohrhuber wrote:
>>>>
>>>>>
>>>>>> Revision: 9090
>>>>>>
>>>> http://supercollider.svn.sourceforge.net/supercollider/?
>>>> rev=9090&view=rev
>>>>>> Author:   rkuivila
>>>>>> Date:     2009-04-21 12:42:55 +0000 (Tue, 21 Apr 2009)
>>>>>>
>>>>>> Log Message:
>>>>>> -----------
>>>>>> eliminated redundant pointer to EventStreamObject in the  
>>>>>> routine that
>>>> wraps prNext.
>>>>>>
>>>>>> Modified Paths:
>>>>>> --------------
>>>>>>  trunk/build/SCClassLibrary/Common/Streams/Stream.sc
>>>>>>
>>>>>> Modified:
>>>> trunk/build/SCClassLibrary/Common/Streams/Stream.sc
>>>>>>
>>>> ===================================================================
>>>>>> --- trunk/build/SCClassLibrary/Common/Streams/Stream.sc
>>>>        2009-04-21 11:19:04 UTC (rev 9089)
>>>>>> +++ trunk/build/SCClassLibrary/Common/Streams/Stream.sc
>>>>        2009-04-21 12:42:55 UTC (rev 9090)
>>>>>> @@ -503,9 +503,8 @@
>>>>>>       }
>>>>>>
>>>>>>       init {
>>>>>> -               var me = this;
>>>>>>               cleanup = EventStreamCleanup.new;
>>>>>> -               routine = Routine{\xCA| inTime |\xCAloop { inTime
>>>> =\xCAme.prNext(inTime).yield } };
>>>>>> +               routine = Routine{\xCA| inTime |\xCAloop { inTime
>>>> =\xCAthis.prNext(inTime).yield } };
>>>>>>       }
>>>>>>
>>>>>
>>>>> strange characters in the code - maybe need to be spaces?
>>>>> a question - what was changed and why?
>>>>> --
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> .
>>>>>
>>>>> _______________________________________________
>>>>> sc-dev mailing list
>>>>>
>>>>> info (subscription, etc.):
>>>> http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
>>>>> archive: http://www.listarc.bham.ac.uk/marchives/sc-dev/
>>>>> search:
>>>> http://www.listarc.bham.ac.uk/lists/sc-dev/search/
>>>>>
>>>>>
>>>>
>>>>
>>>> _______________________________________________
>>>> sc-dev mailing list
>>>>
>>>> info (subscription, etc.):
>>>> http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
>>>> archive: http://www.listarc.bham.ac.uk/marchives/sc-dev/
>>>> search: http://www.listarc.bham.ac.uk/lists/sc-dev/search/
>>>>
>>>
>>>
>>> --
>>> http://www.mcld.co.uk
>>>
>>> _______________________________________________
>>> sc-dev mailing list
>>>
>>> info (subscription, etc.): http://www.beast.bham.ac.uk/research/ 
>>> sc_mailing_lists.shtml
>>> archive: http://www.listarc.bham.ac.uk/marchives/sc-dev/
>>> search: http://www.listarc.bham.ac.uk/lists/sc-dev/search/
>>>
>>
>>
>> _______________________________________________
>> sc-dev mailing list
>>
>> info (subscription, etc.): http://www.beast.bham.ac.uk/research/ 
>> sc_mailing_lists.shtml
>> archive: http://www.listarc.bham.ac.uk/marchives/sc-dev/
>> search: http://www.listarc.bham.ac.uk/lists/sc-dev/search/
>
>
> --
> --
> Alberto de Campo
> Bergstrasse 59/33
> A-8020 Graz, Austria
> e-mail : adc@...
> --<extStringClean.sc>


_______________________________________________
sc-dev mailing list

info (subscription, etc.): http://www.beast.bham.ac.uk/research/sc_mailing_lists.shtml
archive: http://www.listarc.bham.ac.uk/marchives/sc-dev/
search: http://www.listarc.bham.ac.uk/lists/sc-dev/search/