diff options
-rw-r--r-- | src/plugins/ruby/weechat-ruby.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/plugins/ruby/weechat-ruby.c b/src/plugins/ruby/weechat-ruby.c index d47a380b1..d1e73b6c7 100644 --- a/src/plugins/ruby/weechat-ruby.c +++ b/src/plugins/ruby/weechat-ruby.c @@ -72,7 +72,6 @@ struct t_config_option *ruby_config_look_check_license = NULL; struct t_config_option *ruby_config_look_eval_keep_context = NULL; int ruby_quiet = 0; -int ruby_hide_errors = 0; struct t_plugin_script *ruby_script_eval = NULL; int ruby_eval_mode = 0; @@ -434,9 +433,6 @@ weechat_ruby_output (VALUE self, VALUE str) /* make C compiler happy */ (void) self; - if (ruby_hide_errors) - return Qnil; - msg = strdup (StringValuePtr (str)); m = msg; |