emacs-matlab/toolbox/ebclear.m
Eric Ludlam 28f0116169 toolbox/ebclear., ebstop.m:
Fix function names to match file name.
2019-12-08 11:56:15 -05:00

11 lines
241 B
Matlab

function ebclear(varargin)
% Emacs version of dbstop. Tells emacs which breakpoints are active.
dbclear(varargin{:});
% Send emacs some breakpoints
bp = getappdata(groot, 'EmacsBreakpoints');
bp.updateEmacs;
end