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

api: add list "gui_buffer_last_displayed" in hdata "buffer"

This commit is contained in:
Sebastien Helleu
2012-03-05 08:02:55 +01:00
parent f5769dbd17
commit 39787d483a
6 changed files with 7 additions and 1 deletions
+2 -1
View File
@@ -1,7 +1,7 @@
WeeChat ChangeLog
=================
Sébastien Helleu <flashcode@flashtux.org>
v0.3.8-dev, 2012-03-04
v0.3.8-dev, 2012-03-05
Version 0.3.8 (under dev!)
@@ -10,6 +10,7 @@ Version 0.3.8 (under dev!)
* core: add support of terminal "bracketed paste mode", new option
weechat.look.paste_bracketed (task #11316)
* core: fix display of wide chars on last column of chat area (patch #7733)
* api: add list "gui_buffer_last_displayed" in hdata "buffer"
* irc: add support of "external" SASL mechanism (task #11864)
* irc: close server buffer when server is deleted
* irc: add search for lower case nicks in option irc.look.nick_color_force
+1
View File
@@ -286,6 +286,7 @@
'local_variables' (hashtable) +
'prev_buffer' (pointer, hdata: 'buffer') +
'next_buffer' (pointer, hdata: 'buffer') |
'gui_buffer_last_displayed' +
'gui_buffers' +
'last_gui_buffer'
+1
View File
@@ -286,6 +286,7 @@
'local_variables' (hashtable) +
'prev_buffer' (pointer, hdata: 'buffer') +
'next_buffer' (pointer, hdata: 'buffer') |
'gui_buffer_last_displayed' +
'gui_buffers' +
'last_gui_buffer'
+1
View File
@@ -286,6 +286,7 @@
'local_variables' (hashtable) +
'prev_buffer' (pointer, hdata: 'buffer') +
'next_buffer' (pointer, hdata: 'buffer') |
'gui_buffer_last_displayed' +
'gui_buffers' +
'last_gui_buffer'
+1
View File
@@ -286,6 +286,7 @@
'local_variables' (hashtable) +
'prev_buffer' (pointer, hdata: 'buffer') +
'next_buffer' (pointer, hdata: 'buffer') |
'gui_buffer_last_displayed' +
'gui_buffers' +
'last_gui_buffer'
+1
View File
@@ -3153,6 +3153,7 @@ gui_buffer_hdata_buffer_cb (void *data, const char *hdata_name)
HDATA_VAR(struct t_gui_buffer, next_buffer, POINTER, hdata_name);
HDATA_LIST(gui_buffers);
HDATA_LIST(last_gui_buffer);
HDATA_LIST(gui_buffer_last_displayed);
}
return hdata;
}