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

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

[Octave-bug-tracker] [bug #53453] octave -x stops echoing on descending


From: A.R. Burgers
Subject: [Octave-bug-tracker] [bug #53453] octave -x stops echoing on descending into a function call
Date: Sat, 24 Mar 2018 08:04:36 -0400 (EDT)
User-agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0

URL:
  <http://savannah.gnu.org/bugs/?53453>

                 Summary: octave -x stops echoing on descending into a
function call
                 Project: GNU Octave
            Submitted by: arb
            Submitted on: Sat 24 Mar 2018 12:04:35 PM UTC
                Category: Interpreter
                Severity: 3 - Normal
                Priority: 5 - Normal
              Item Group: Regression
                  Status: None
             Assigned to: None
         Originator Name: 
        Originator Email: 
             Open/Closed: Open
         Discussion Lock: Any
                 Release: dev
        Operating System: GNU/Linux

    _______________________________________________________

Details:

consider this script:


function zz
    x = 3;
    zz2
end
function zz2
    y = 4;
end


and execute with this command:


octave --norc --no-init-path --no-init-file --no-site-file -x zz.m


octave-4.2.1 produces:


+ function zz ()
+ x = 3;
+ zz2
+ function zz2 ()
+ y = 4;
+ endfunction
+
+ endfunction


octave-4.3.0+ does not produce any output

If you invoke function zz from a script, say run_zz, with just one line
invoking zz:


zz


then octave-4.3.0+ produces


+ zz
+


It looks like echoing stops in 4.3.0+ when descending into a function.




    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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