xep-0308: Make /correct work without quotation marks

Now we can specify an unlimited amount of arguments for commands.
Maybe this is also helpful for other commands that use quotation marks
so far.
This commit is contained in:
Michael Vetter
2020-02-12 14:50:58 +01:00
parent 1072cdab0a
commit 8f37afcd37
4 changed files with 14 additions and 11 deletions

View File

@@ -3765,9 +3765,8 @@ _correct_autocomplete(ProfWin *window, const char *const input, gboolean previou
return NULL;
}
GString *result_str = g_string_new("/correct \"");
GString *result_str = g_string_new("/correct ");
g_string_append(result_str, last_message);
g_string_append(result_str, "\"");
char *result = result_str->str;
g_string_free(result_str, FALSE);