Skip to content
Snippets Groups Projects
Commit 85905cbb authored by Houtan Bastani's avatar Houtan Bastani
Browse files

reporting: for windows filenames escape underscore

parent 7cc259ea
Branches
Tags
Loading
......@@ -138,6 +138,7 @@ if isempty(o.figname)
tn = tempname;
if strcmp(computer, 'PCWIN') || strcmp(computer, 'PCWIN64')
tn = strrep(tn, '\', '/');
tn = strrep(tn, '_', '\_');
end
o.figname = [tn '.tex'];
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment