Remove unneeded second slash

docdir does always end with a slash, so the second one is not needed.
The first one is however mandatory.
This commit is contained in:
Georg Baum 2015-09-04 20:51:08 +02:00
parent 46d2344902
commit b84a5ac0d5

View File

@ -1782,7 +1782,7 @@ void Buffer::writeLaTeXSource(otexstream & os,
}
os << "\\makeatletter\n"
<< "\\def\\input@path{{"
<< docdir << "/}}\n"
<< docdir << "}}\n"
<< "\\makeatother\n";
}
}