diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2008-10-18 16:03:16 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2008-10-18 16:03:16 +0200 |
commit | ac107802fdd508ecaa6fd44cc56d2ff1cdc3f9b6 (patch) | |
tree | a1f6a012a6d3053470616a78768272a4f35a3ddc /src/plugins/demo | |
parent | 1f10ee141ae7376675758bc9d1792346f2728c3f (diff) | |
download | weechat-ac107802fdd508ecaa6fd44cc56d2ff1cdc3f9b6.zip |
Aspell plugin is born again
Diffstat (limited to 'src/plugins/demo')
-rw-r--r-- | src/plugins/demo/demo.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/demo/demo.c b/src/plugins/demo/demo.c index 08c4dc5fd..bedb096f9 100644 --- a/src/plugins/demo/demo.c +++ b/src/plugins/demo/demo.c @@ -87,7 +87,7 @@ demo_printf_command_cb (void *data, struct t_gui_buffer *buffer, int argc, if (argc > 1) weechat_printf (buffer, - "demo_printf: '%s'", argv_eol[1]); + "demo_printf: \"%s\"", argv_eol[1]); else { weechat_printf (buffer, @@ -121,7 +121,7 @@ demo_buffer_input_data_cb (void *data, struct t_gui_buffer *buffer, weechat_printf (buffer, "buffer_input_data_cb: buffer = %x (%s), " - "input_data = '%s'", + "input_data = \"%s\"", buffer, weechat_buffer_get_string (buffer, "name"), input_data); @@ -372,7 +372,7 @@ demo_signal_cb (void *data, const char *signal, const char *type_data, { weechat_printf (NULL, _("demo_signal: signal: %s, type_data: %s, " - "signal_data: '%s'"), + "signal_data: \"%s\""), signal, type_data, (char *)signal_data); } else if (strcmp (type_data, WEECHAT_HOOK_SIGNAL_INT) == 0) |