Navigation

Operators and Keywords

Function List:

C++ API

: dbclear func
: dbclear func line
: dbclear func line1 line2
: dbclear line
: dbclear all
: dbclear in func
: dbclear in func at line
: dbclear if event
: dbclear ("func")
: dbclear ("func", line)
: dbclear ("func", line1, line2, …)
: dbclear ("func", line1, …)
: dbclear (line, …)
: dbclear ("all")

Delete a breakpoint at line number line in the function func.

Arguments are

func

Function name as a string variable. When already in debug mode this argument can be omitted and the current function will be used.

line

Line number from which to remove a breakpoint. Multiple lines may be given as separate arguments or as a vector.

event

An event such as error, interrupt, or warning (see ‘dbstop’ for details).

When called without a line number specification all breakpoints in the named function are cleared.

If the requested line is not a breakpoint no action is performed.

The special keyword "all" will clear all breakpoints from all files.

See also: dbstop, dbstatus, dbwhere.

Package: octave