Typo fix
svn path=/trunk/; revision=4447
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user