Merge branch 'develop' into modify-fix-compute-accessors

# Conflicts:
#	src/PLUGIN/plugin.cpp
This commit is contained in:
Axel Kohlmeyer
2021-10-27 21:14:05 -04:00
171 changed files with 1101 additions and 900 deletions

View File

@ -954,7 +954,7 @@ std::vector<std::string> utils::split_words(const std::string &text)
}
// unquoted
while (1) {
while (true) {
if ((c == '\'') || (c == '"')) goto quoted;
// skip escaped quote
if ((c == '\\') && ((buf[1] == '\'') || (buf[1] == '"'))) {