changeset 30957:abca9eac1ec9

maint: merge stable to default.
author Rik <rik@octave.org>
date Thu, 21 Apr 2022 13:53:27 -0700
parents cd741166d6fb (current diff) 0d06084693dd (diff)
children 8a8f82c0235e
files libinterp/parse-tree/bp-table.cc
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/parse-tree/bp-table.cc	Thu Apr 21 12:04:09 2022 -0700
+++ b/libinterp/parse-tree/bp-table.cc	Thu Apr 21 13:53:27 2022 -0700
@@ -539,13 +539,13 @@
 %! dbstop help;
 %! dbstop in ls;
 %! dbstop help at 105;  # 105 is a comment; code line is at 106
-%! dbstop in ls 104;
+%! dbstop in ls 123;    # 123 is a comment; code line is at 126
 %! dbstop help 204 if a==5;
 %! dbstop if error Octave:undefined-function;
 %! s = dbstatus;
 %! dbclear all;
 %! assert ({s.bkpt(:).name}, {"help", "help", "help>do_contents", "ls", "ls"});
-%! assert ([s.bkpt(:).line], [56, 106, 208, 63, 104]);
+%! assert ([s.bkpt(:).line], [56, 106, 208, 63, 126]);
 %! assert (s.errs, {"Octave:undefined-function"});
 */