emacs-matlab/tests/testeeval.m
Eric Ludlam 968f46fbd2 tests/testeeval.m:
Add new case for 'noend' - where no </EMACSCAP> is sent.
Lets you test C-c C-c binding, to make sure there is an escape hatch.
2019-12-20 22:22:20 -05:00

29 lines
725 B
Matlab

function testeeval(style)
% Test that we can tell Emacs what to do.
if nargin == 0
style = 'eval';
end
switch style
case 'eval'
disp('<EMACSCAP>(eval)')
disp('(setq mstest-EVAL-TEST "evaluate this")')
disp('</EMACSCAP>')
case 'buffer'
disp('<EMACSCAP>(*MATLAB TEST*)')
pause(2)
disp('Random text to display in a buffer')
disp('Random text to display in a buffer')
disp('Random text to display in a buffer')
disp('Random text to display in a buffer')
disp('</EMACSCAP>')
case 'noend'
disp('<EMACSCAP>(*MATLAB TEST*)')
disp('Random text to display but can''t');
end
end