# HG changeset patch # User Myhailo Danylenko # Date 1446765262 -7200 # Node ID f195352808fbea9001511ee316d72f5327212172 # Parent ed1b8250a170aee1cf68824177371e9f3feef508 Add extra arg to hk_message_out (patch by Holger) diff -r ed1b8250a170 -r f195352808fb cmd.c --- a/cmd.c Thu Nov 13 18:56:44 2014 +0200 +++ b/cmd.c Fri Nov 06 01:14:22 2015 +0200 @@ -92,10 +92,10 @@ if (!room) { if (subject) { gchar *hbody = g_strdup_printf ("[%s]\n%s", subject, body); - hk_message_out (to, NULL, 0, hbody, crypted, xep184); + hk_message_out (to, NULL, 0, hbody, crypted, 0, xep184); g_free (hbody); } else - hk_message_out (to, NULL, 0, body, crypted, xep184); + hk_message_out (to, NULL, 0, body, crypted, 0, xep184); } return TRUE; diff -r ed1b8250a170 -r f195352808fb docs/todo.mdwn --- a/docs/todo.mdwn Thu Nov 13 18:56:44 2014 +0200 +++ b/docs/todo.mdwn Fri Nov 06 01:14:22 2015 +0200 @@ -1,4 +1,5 @@ * Header template option? * Option to strip leading/trailing whitespace +* Detect carbon flag presence on hk_message_out