octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #31491] save produces unloadable output for ne


From: Rik
Subject: [Octave-bug-tracker] [bug #31491] save produces unloadable output for nested anonymous functions
Date: Fri, 29 Oct 2010 16:36:47 +0000
User-agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.11) Gecko/20101013 Ubuntu/9.10 (karmic) Firefox/3.6.11

Update of bug #31491 (project octave):

                  Status:               Need Info => Confirmed              

    _______________________________________________________

Follow-up Comment #3:

This is confirmed on a recent tip (2010-10-29).  The bug seems to be the
parsing of the comma, which can ordinarily be a break between statements.  In
this case, the comma is separating arguments in a function call but it appears
that the parser for printing out the function has gotten confused.  

Below is a slightly simpler example to show the problem.

f1 = @(x1,x2) x1+x2;
f2 = @(y1,y2) arrayfun ( @(z) f1(y1, z) , y2)
f2 =

@(y1, y2) arrayfun (@(z) f1 (y1, z);
, y2)



    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?31491>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]