commit cb87cf1ddffddb6d19c37cd30b273d53baaab352
parent 42b153731f3a70642e7901334fb3fc948cefa036
Author: Paul <paul@claws-mail.org>
Date: Wed, 22 Jun 2022 11:10:56 +0100
make the external editor error msg more useful and less obscure
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/compose.c b/src/compose.c
@@ -9708,7 +9708,7 @@ static void compose_exec_ext_editor(Compose *compose)
G_SPAWN_DO_NOT_REAP_CHILD | G_SPAWN_SEARCH_PATH,
NULL, NULL, &pid, &error)) {
alertpanel_error(_("Could not spawn the following "
- "command:\n%s\n%s"),
+ "external editor command:\n%s\n%s"),
cmd, error ? error->message : _("Unknown error"));
if (error)
g_error_free(error);