changeset 28602:79558e694c6c stable

__debug_octave__.m: Run debugger asynchronously from Octave. * __debug_octave__.m: Call system() command with "async" option correctly.
author Rik <rik@octave.org>
date Wed, 29 Jul 2020 13:04:53 -0700
parents 7bc89d11ec13
children 701063f476ee 69cba42a01ca
files scripts/testfun/__debug_octave__.m
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/testfun/__debug_octave__.m	Wed Jul 29 10:50:07 2020 -0700
+++ b/scripts/testfun/__debug_octave__.m	Wed Jul 29 13:04:53 2020 -0700
@@ -63,7 +63,7 @@
     endif
   endif
 
-  system (sprintf (command_string, getpid ()), "async");
+  system (sprintf (command_string, getpid ()), false, "async");
 
 endfunction