New function for generating a string to show in a tooltip. Currently a placeholder implementation.
8 lines
204 B
Matlab
8 lines
204 B
Matlab
function emacstipstring(expr)
|
|
% Take EXPR, and convert into a tooltip friendly string.
|
|
% This utility is mean to be used by emacs to create text to display
|
|
% whie debugging code.
|
|
|
|
disp(expr)
|
|
end
|
|
|