diff options
author | Simon Ruderich <simon@ruderich.org> | 2010-10-15 00:00:52 +0000 |
---|---|---|
committer | Simon Ruderich <simon@ruderich.org> | 2010-10-15 00:00:52 +0000 |
commit | f22d37263ee0aec3f4190440403a49682631aab6 (patch) | |
tree | ca70debb51ef0006734d716ca81327a9f67ecb45 /vim-mode/vim_mode.pl | |
parent | vim_mode: Fix :set for boolean values. (diff) | |
download | irssi-scripts-f22d37263ee0aec3f4190440403a49682631aab6.tar.gz irssi-scripts-f22d37263ee0aec3f4190440403a49682631aab6.zip |
vim_mode: Don't emit 'setup changed' signal.
Instead call our setup_changed() directly, not sure why the signal
doesn't work.
Diffstat (limited to 'vim-mode/vim_mode.pl')
-rw-r--r-- | vim-mode/vim_mode.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vim-mode/vim_mode.pl b/vim-mode/vim_mode.pl index 1f7fb14..9a6e5bc 100644 --- a/vim-mode/vim_mode.pl +++ b/vim-mode/vim_mode.pl @@ -1932,7 +1932,7 @@ sub ex_set { } } _setting_set($name, $value); - Irssi::signal_emit('setup changed'); + setup_changed(); # :se[t] [option] } else { |