1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-29 14:26:39 +02:00

Add new option irc.look.part_closes_buffer to close buffer when /part is issued on channel (task #10295)

This commit is contained in:
Sebastien Helleu
2010-03-26 20:02:17 +01:00
parent 2bbc228381
commit 485e884751
19 changed files with 84 additions and 28 deletions
+6 -6
View File
@@ -35,15 +35,15 @@
/*
* irc_buffer_get_server_channel: get IRC server and channel pointers with a
* buffer pointer
* (buffer may be a server or a channel)
* irc_buffer_get_server_and_channel: get IRC server and channel pointers with
* a buffer pointer
* (buffer may be a server or a channel)
*/
void
irc_buffer_get_server_channel (struct t_gui_buffer *buffer,
struct t_irc_server **server,
struct t_irc_channel **channel)
irc_buffer_get_server_and_channel (struct t_gui_buffer *buffer,
struct t_irc_server **server,
struct t_irc_channel **channel)
{
struct t_irc_server *ptr_server;
struct t_irc_channel *ptr_channel;