emacs-matlab/toolbox/ebstop.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
239 B
Matlab

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