]> git.lyx.org Git - features.git/commitdiff
Remove unneeded second slash
authorGeorg Baum <baum@lyx.org>
Fri, 4 Sep 2015 18:51:08 +0000 (20:51 +0200)
committerGeorg Baum <baum@lyx.org>
Fri, 4 Sep 2015 18:51:08 +0000 (20:51 +0200)
docdir does always end with a slash, so the second one is not needed.
The first one is however mandatory.

src/Buffer.cpp

index 09cff3c95add7b2ceeb28cc23ee1bec4b255936a..6f0673f30a1f4502ce03e6b74a6dbd99aca2202b 100644 (file)
@@ -1782,7 +1782,7 @@ void Buffer::writeLaTeXSource(otexstream & os,
                                }
                                os << "\\makeatletter\n"
                                   << "\\def\\input@path{{"
-                                  << docdir << "/}}\n"
+                                  << docdir << "}}\n"
                                   << "\\makeatother\n";
                        }
                }