From: Georg Baum Date: Fri, 4 Sep 2015 18:51:08 +0000 (+0200) Subject: Remove unneeded second slash X-Git-Tag: 2.2.0alpha1~363 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=b84a5ac0d59bfbb61baf2304b646e1fa148279f6;p=features.git Remove unneeded second slash docdir does always end with a slash, so the second one is not needed. The first one is however mandatory. --- diff --git a/src/Buffer.cpp b/src/Buffer.cpp index 09cff3c95a..6f0673f30a 100644 --- a/src/Buffer.cpp +++ b/src/Buffer.cpp @@ -1782,7 +1782,7 @@ void Buffer::writeLaTeXSource(otexstream & os, } os << "\\makeatletter\n" << "\\def\\input@path{{" - << docdir << "/}}\n" + << docdir << "}}\n" << "\\makeatother\n"; } }