/SET prompt, /SET prompt_window - Specifies the text in prompt.

'prompt' is used when channel or query is active in window and
'prompt_window' is used with empty windows.


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1005 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2000-12-17 07:39:22 +00:00 committed by cras
commit bbc33bff5e
17 changed files with 291 additions and 71 deletions

View file

@ -137,7 +137,7 @@ static char *theme_replace_expand(THEME_REC *theme, int index,
abstract = rec->data;
abstract = theme_format_expand_data(theme, (const char **) &abstract,
default_color, last_color, 0);
ret = parse_special_string(abstract, NULL, NULL, data, NULL);
ret = parse_special_string(abstract, NULL, NULL, data, NULL, 0);
g_free(abstract);
return ret;
}
@ -158,7 +158,7 @@ static void theme_format_append_variable(GString *str, const char **format)
(*format)++;
value = parse_special((char **) format, NULL, NULL,
args, &free_ret, NULL );
args, &free_ret, NULL, 0);
if (free_ret) g_free(value);
(*format)++;
@ -290,7 +290,7 @@ static char *theme_format_expand_abstract(THEME_REC *theme,
g_free(tmp);
}
ret = parse_special_string(abstract, NULL, NULL, data, NULL);
ret = parse_special_string(abstract, NULL, NULL, data, NULL, 0);
g_free(abstract);
g_free(data);
return ret;