summaryrefslogtreecommitdiff
path: root/src/plugins/guile/weechat-guile.c
diff options
context:
space:
mode:
authorJoram Schrijver <i@joram.io>2020-05-22 02:35:32 +0200
committerSébastien Helleu <flashcode@flashtux.org>2020-06-07 11:07:03 +0200
commitcb5d90dcc7174a69cf3a300d35575a6711f8a077 (patch)
tree68df88b0200e90a6ac8f008648f33ffe72fb65f7 /src/plugins/guile/weechat-guile.c
parentcac45aab469510bff21fef10cdd1a71b137c1a56 (diff)
downloadweechat-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.c15
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;