From 6b97f2c0751ff79fc19ea0e11b4ef957fd71324c Mon Sep 17 00:00:00 2001 From: Richard Heck Date: Sun, 31 Jul 2016 00:15:48 -0400 Subject: [PATCH] Fix substitution for $$Contents. The second argument here is the length of the string to replace, not the position of the final character. --- src/insets/ExternalSupport.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/insets/ExternalSupport.cpp b/src/insets/ExternalSupport.cpp index f208a953d3..37c382a37f 100644 --- a/src/insets/ExternalSupport.cpp +++ b/src/insets/ExternalSupport.cpp @@ -200,7 +200,7 @@ string const doSubstitution(InsetExternalParams const & params, size_t const pos = result.find("$$Contents(\""); size_t const end = result.find("\")", pos); - result.replace(pos, end + 2, contents); + result.replace(pos, end + 2- pos, contents); } return result; -- 2.39.2