svn path=/trunk/; revision=4447
This commit is contained in:
Peter Williams
2000-08-01 15:50:39 +00:00
parent 799fedf1c9
commit 7f807a631f
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -1,3 +1,8 @@
2000-08-01 Peter Williams <peterw@helixcode.com>
* e-msg-composer.c (set_editor_text): sizeof("--\") !=
strlen("--\n"), breaking the test for the signature prefix.
2000-07-28 JP Rosevear <jpr@helixcode.com>
* e-msg-composer.c (e_msg_composer_new_with_sig_file): New
+1 -1
View File
@@ -363,7 +363,7 @@ set_editor_text (BonoboWidget *editor, char *sig_file, const char *text)
sig = get_signature (sig_file);
if (sig) {
if (!strncmp ("--\n", sig, sizeof ("--\n")))
if (!strncmp ("--\n", sig, 3))
fulltext = g_strdup_printf ("%s<BR>\n<PRE>\n%s</PRE>",
text, sig);
else