1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-06 09:43:13 +02:00

Fix reload of file rmodifier.conf

This commit is contained in:
Sebastien Helleu
2011-02-23 16:33:55 +01:00
parent e3cc291448
commit 0e51b63686
2 changed files with 3 additions and 1 deletions
+2 -1
View File
@@ -7,7 +7,6 @@ v0.3.5-dev, 2011-02-23
Version 0.3.5 (under dev!)
--------------------------
* core: fix crash when adding rmodifier with invalid regex
* core: fix crash when using column filling in bars with some empty items
(bug #32565)
* core: allow relative size for command /window resize
@@ -30,6 +29,8 @@ Version 0.3.5 (under dev!)
* irc: add many missing commands for target buffer (options irc.msgbuffer.xxx)
(bug #32216)
* lua: fix crash when many scripts are executing callbacks at same time
* rmodifier: fix reload of file rmodifier.conf
* rmodifier: fix crash when adding rmodifier with invalid regex
* xfer: do not close chat buffers when removing xfer from list (bug #32271)
Version 0.3.4 (2011-01-16)
+1
View File
@@ -62,6 +62,7 @@ rmodifier_config_reload (void *data, struct t_config_file *config_file)
(void) data;
rmodifier_free_all ();
weechat_config_section_free_options (rmodifier_config_section_modifier);
return weechat_config_reload (config_file);
}