client: Support $if Empire in .inputrc

Set the application name to "Empire" to support Empire-specific
customization of readline.  Use in .inputrc looks like this:

    $if Empire
    set bell-style audible
    set history-size 500
    else
    set bell-style visible
    $endif

Signed-off-by: Markus Armbruster <armbru@pond.sub.org>
This commit is contained in:
Markus Armbruster 2015-12-13 17:39:22 +01:00
parent ba484d1389
commit 6a0f9d9874
2 changed files with 3 additions and 1 deletions

View file

@ -567,6 +567,7 @@ play(int sock, char *history_file)
if (isatty(0)) {
use_readline = 1;
rl_already_prompted = 1;
rl_readline_name = "Empire";
if (history_file)
read_history(history_file);
rl_bind_key('\t', rl_insert); /* Disable tab completion */