mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 20:33:46 +02:00
window->active_server used to hold non-connected servers, but that was
removed before because it created several problems, especially with scripts. however that change made /server and /disconnect annoying to use with non-connected servers. so, now we have window->connect_server as well. either active_server or connect_server is set, but never both. commands that can deal properly with non-connected servers can now use the connect_server, while everyone else happily thinks that no server is active. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2921 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
930dd40815
commit
a83366069f
5 changed files with 119 additions and 24 deletions
|
|
@ -26,6 +26,7 @@ struct _WINDOW_REC {
|
|||
GSList *items;
|
||||
WI_ITEM_REC *active;
|
||||
SERVER_REC *active_server;
|
||||
SERVER_REC *connect_server;
|
||||
char *servertag; /* active_server must be either NULL or have this tag (unless there's items in this window) */
|
||||
|
||||
int level; /* message level */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue