reporting: bug fix: avoid underscores altogether

time-shift
Houtan Bastani 2013-12-13 17:23:26 +01:00
parent b9df616c18
commit 359245b65b
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ drawnow;
if isempty(o.figname)
[junk, tn] = fileparts(tempname);
if strcmp(computer, 'PCWIN') || strcmp(computer, 'PCWIN64')
tn = strrep(tn, '_', '\_');
tn = strrep(tn, '_', '-');
end
o.figname = [o.figDirName filesep tn '.tex'];
end