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

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

[Octave-bug-tracker] [bug #49068] Cannot set breakpoints in nested funct


From: Guillaume
Subject: [Octave-bug-tracker] [bug #49068] Cannot set breakpoints in nested functions from GUI editor
Date: Mon, 12 Sep 2016 16:36:02 +0000 (UTC)
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:48.0) Gecko/20100101 Firefox/48.0

Follow-up Comment #2, bug #49068 (project octave):

Apologies in advance if I'm embarrassingly wrong but I thought that in my
example the functions aaaa() and bbbb() where subfunctions and not nested
functions. I.e. this is equivalent to this:


function test_breakpoint
disp('test_breakpoint');
end

function aaaa
disp('aaaa');
end

function bbbb
disp('bbbb');
end


while a nested function example would be:


function test_breakpoint
disp('test_breakpoint');

function aaaa
disp('aaaa');
end

function bbbb
disp('bbbb');
end

end


    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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