diff --git a/dastworx/src/common.d b/dastworx/src/common.d index e52877d7..b0f9439d 100644 --- a/dastworx/src/common.d +++ b/dastworx/src/common.d @@ -195,6 +195,16 @@ private void fillBadVersions() */ string patchPascalString(size_t lenLimit = 0)(string value) { + bool needed; + foreach(i; 0 .. value.length) + if (value[i] == '\'') + { + needed = true; + break; + } + if (!needed) + return value; + Appender!string app; static if (lenLimit) const size_t len = value.length > 100 ? 100 : value.length; diff --git a/etc/libdparse b/etc/libdparse index a69006e9..1b0df8cb 160000 --- a/etc/libdparse +++ b/etc/libdparse @@ -1 +1 @@ -Subproject commit a69006e93599d4c450d0348c8875d109dcc74757 +Subproject commit 1b0df8cb838adfb73889faaea524d6d6a473a5df