Commit 42d2ff71 42d2ff71265b62e778b89a035efb2be795ce8956 by Sergey Poznyakoff

Minor changes.

* libmu_scm/Makefile.am (DOT_X_FILES, DOT_DOC_FILES): Add mu_debug.x and
mu_debug.doc.
* mail/send.c (fill_body): Remove extra \n after null message
body diagnostics.
1 parent 45d49848
...@@ -54,6 +54,7 @@ libmu_scm_la_LIBADD = \ ...@@ -54,6 +54,7 @@ libmu_scm_la_LIBADD = \
54 DOT_X_FILES=\ 54 DOT_X_FILES=\
55 mu_address.x\ 55 mu_address.x\
56 mu_body.x\ 56 mu_body.x\
57 mu_debug.x\
57 mu_mailbox.x\ 58 mu_mailbox.x\
58 mu_message.x\ 59 mu_message.x\
59 mu_mime.x\ 60 mu_mime.x\
...@@ -65,6 +66,7 @@ DOT_X_FILES=\ ...@@ -65,6 +66,7 @@ DOT_X_FILES=\
65 DOT_DOC_FILES=\ 66 DOT_DOC_FILES=\
66 mu_address.doc\ 67 mu_address.doc\
67 mu_body.doc\ 68 mu_body.doc\
69 mu_debug.doc\
68 mu_mailbox.doc\ 70 mu_mailbox.doc\
69 mu_message.doc\ 71 mu_message.doc\
70 mu_mime.doc\ 72 mu_mime.doc\
......
...@@ -333,7 +333,7 @@ fill_body (mu_message_t msg, mu_stream_t instr) ...@@ -333,7 +333,7 @@ fill_body (mu_message_t msg, mu_stream_t instr)
333 { 333 {
334 char *str; 334 char *str;
335 if (mailvar_get (&str, "nullbodymsg", mailvar_type_string, 0) == 0) 335 if (mailvar_get (&str, "nullbodymsg", mailvar_type_string, 0) == 0)
336 mu_error ("%s\n", _(str)); 336 mu_error ("%s", _(str));
337 } 337 }
338 else 338 else
339 return 1; 339 return 1;
......