X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Finsets%2FExternalSupport.cpp;h=aa6f51cbe919a1222a6157df140ee3dec00af6cd;hb=6b49b6b129af9417fea7ea907a44a46fbbd38340;hp=d21c3d84abc4ac0f3832da2e10258acc45a851a5;hpb=0838992dcd5a120d2b422ec734ebd52b0fdd3c7c;p=lyx.git diff --git a/src/insets/ExternalSupport.cpp b/src/insets/ExternalSupport.cpp index d21c3d84ab..aa6f51cbe9 100644 --- a/src/insets/ExternalSupport.cpp +++ b/src/insets/ExternalSupport.cpp @@ -381,17 +381,6 @@ int writeExternal(InsetExternalParams const & params, str = substituteCommands(params, str, format); str = substituteOptions(params, str, format); - // If the template is a date, we must remove the newline at the end to - // avoid LaTeX errors like the one described in bug #4398 - if (params.templatename() == "Date") { - // depending on the OS we have either \r\n or only \n - size_t pos = str.rfind('\r'); - if (pos != string::npos) - str.erase(pos); - pos = str.rfind('\n'); - if (pos != string::npos) - str.erase(pos); - } // FIXME UNICODE os << from_utf8(str); return int(count(str.begin(), str.end(),'\n'));