1
0
mirror of https://github.com/moparisthebest/hexchat synced 2024-11-25 10:42:18 -05:00

Exec: Print help on empty string

... and bump version
This commit is contained in:
TingPing 2013-09-10 02:24:53 -04:00
parent 9a3c1ccd72
commit b9df78b9c6

View File

@ -28,7 +28,7 @@
static hexchat_plugin *ph; /* plugin handle */ static hexchat_plugin *ph; /* plugin handle */
static char name[] = "Exec"; static char name[] = "Exec";
static char desc[] = "Execute commands inside HexChat"; static char desc[] = "Execute commands inside HexChat";
static char version[] = "1.1"; static char version[] = "1.2";
static int static int
run_command (char *word[], char *word_eol[], void *userdata) run_command (char *word[], char *word_eol[], void *userdata)
@ -115,7 +115,6 @@ run_command (char *word[], char *word_eol[], void *userdata)
} }
timeElapsed = difftime (time (0), start); timeElapsed = difftime (time (0), start);
} }
}
/* display a newline to separate things */ /* display a newline to separate things */
if (!announce) if (!announce)
@ -129,6 +128,11 @@ run_command (char *word[], char *word_eol[], void *userdata)
CloseHandle (readPipe); CloseHandle (readPipe);
CloseHandle (pInfo.hProcess); CloseHandle (pInfo.hProcess);
CloseHandle (pInfo.hThread); CloseHandle (pInfo.hThread);
}
else
{
hexchat_command (ph, "help exec");
}
return HEXCHAT_EAT_HEXCHAT; return HEXCHAT_EAT_HEXCHAT;
} }