comparison scripts/miscellaneous/debug.m @ 14053:4f7bbf1c6fe4 stable

debug.m: Hint more at the capabilities of dbstep (bug #34712)
author Jordi Gutiérrez Hermoso <jordigh@octave.org>
date Wed, 14 Dec 2011 21:56:36 -0500
parents 472a25155d82
children 72c96de7a403
comparison
equal deleted inserted replaced
14051:f07f7dd0d4df 14053:4f7bbf1c6fe4
40 ## List the function where execution is currently stopped, enumerating 40 ## List the function where execution is currently stopped, enumerating
41 ## the line numbers. 41 ## the line numbers.
42 ## 42 ##
43 ## @item dbstep 43 ## @item dbstep
44 ## @itemx dbnext 44 ## @itemx dbnext
45 ## Execute one or more lines of code and re-enter debug mode. 45 ## Execute (step) one or more lines, follow execution into (step into) a
46 ## function call, or execute until the end of a function (step out), and
47 ## re-enter debug mode.
46 ## 48 ##
47 ## @item dbcont 49 ## @item dbcont
48 ## Continue normal code execution from the debug prompt. 50 ## Continue normal code execution from the debug prompt.
49 ## 51 ##
50 ## @item dbquit 52 ## @item dbquit