mirror of
https://github.com/irssi/irssi.git
synced 2024-11-03 04:27:19 -05:00
/EXEC -interactive : only numbered /execs should have the % prefix.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2680 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
d25bb43043
commit
e03bd9b727
@ -67,8 +67,7 @@ static EXEC_WI_REC *exec_wi_create(WINDOW_REC *window, PROCESS_REC *rec)
|
||||
item = g_new0(EXEC_WI_REC, 1);
|
||||
item->type = module_get_uniq_id_str("WINDOW ITEM TYPE", "EXEC");
|
||||
item->destroy = (void (*) (WI_ITEM_REC *)) exec_wi_destroy;
|
||||
item->name = rec->name != NULL ?
|
||||
g_strdup_printf("%%%s", rec->name) :
|
||||
item->name = rec->name != NULL ? g_strdup(rec->name) :
|
||||
g_strdup_printf("%%%d", rec->id);
|
||||
|
||||
item->createtime = time(NULL);
|
||||
|
Loading…
Reference in New Issue
Block a user