diff options
author | Joram Schrijver <i@joram.io> | 2020-05-22 02:35:32 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2020-06-07 11:07:03 +0200 |
commit | cb5d90dcc7174a69cf3a300d35575a6711f8a077 (patch) | |
tree | 68df88b0200e90a6ac8f008648f33ffe72fb65f7 /src/plugins/guile/weechat-guile.c | |
parent | cac45aab469510bff21fef10cdd1a71b137c1a56 (diff) | |
download | weechat-cb5d90dcc7174a69cf3a300d35575a6711f8a077.zip |
guile: re-enable "/guile eval" (issue #1098)
With the output port now properly implemented for Guile >= 2.2, this
command works again.
Diffstat (limited to 'src/plugins/guile/weechat-guile.c')
-rw-r--r-- | src/plugins/guile/weechat-guile.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/plugins/guile/weechat-guile.c b/src/plugins/guile/weechat-guile.c index ea1b3a77b..2c1ed139c 100644 --- a/src/plugins/guile/weechat-guile.c +++ b/src/plugins/guile/weechat-guile.c @@ -916,24 +916,9 @@ weechat_guile_command_cb (const void *pointer, void *data, else break; } - /* - * FIXME: this does not yet work with Guile >= 2.2, so the eval - * feature is temporarily disabled, waiting for a fix - */ - /* if (!weechat_guile_eval (buffer, send_to_buffer_as_input, exec_commands, ptr_code)) WEECHAT_COMMAND_ERROR; - */ - /* TODO: fix /guile eval */ - (void) buffer; - (void) ptr_code; - (void) send_to_buffer_as_input; - (void) exec_commands; - weechat_printf (NULL, - _("%sCommand \"/%s eval\" is not yet implemented"), - weechat_prefix ("error"), - weechat_guile_plugin->name); } else WEECHAT_COMMAND_ERROR; |