Merge branch 'master' into more-internal-convenience

# Conflicts:
#	src/group.cpp
This commit is contained in:
Axel Kohlmeyer
2020-06-29 11:50:43 -04:00
13 changed files with 288 additions and 131 deletions

View File

@ -536,9 +536,9 @@ void Group::assign(int narg, char **arg)
convenience function to allow assigning to groups from a single string
------------------------------------------------------------------------- */
void Group::assign(const std::string &fixcmd)
void Group::assign(const std::string &groupcmd)
{
std::vector<std::string> args = utils::split_words(fixcmd);
std::vector<std::string> args = utils::split_words(groupcmd);
char **newarg = new char*[args.size()];
int i=0;
for (const auto &arg : args) {