prepend '\n\n' to a siganture without a separator
authorPaul Mangan <paul@claws-mail.org>
Tue, 29 Jul 2003 12:54:22 +0000 (12:54 +0000)
committerPaul Mangan <paul@claws-mail.org>
Tue, 29 Jul 2003 12:54:22 +0000 (12:54 +0000)
ChangeLog.claws
configure.ac
src/compose.c

index accf161c297f52cd11d898393f549f8639b0585d..9a9803c174f7d3940d34dbf9eb383d19063e6803 100644 (file)
@@ -1,3 +1,8 @@
+2003-07-29 [paul]      0.9.3claws72
+
+       * src/compose.c
+               prepend "\n\n" to a signature without a separator too
+
 2003-07-29 [paul]      0.9.3claws71
 
        * src/compose.c
index 7649a8668f3337f8fbe449344287e8e1ad9257ea..0650d45688db3ca6069d8414620cfbfca3cd732b 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=9
 MICRO_VERSION=3
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=71
+EXTRA_VERSION=72
 if test $EXTRA_VERSION -eq 0; then
     VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}claws
 else
index f74d5f28d8db059b83fb02b13a180df54dcf66fd..c879dfad027e0d7337ab5df03bb7813002f0c651 100644 (file)
@@ -1976,13 +1976,14 @@ static gchar *compose_get_signature_str(Compose *compose)
                g_free(tmp);
        }
 
-       if (compose->account->sig_sep) {
+       if (compose->account->sig_sep)
                sig_str = g_strconcat("\n\n", compose->account->sig_sep, "\n", sig_body,
                                      NULL);
-               g_free(sig_body);
-       } else
-               sig_str = sig_body;
+       else
+               sig_str = g_strconcat("\n\n", sig_body, NULL);
 
+       g_free(sig_body);
+       
        return sig_str;
 }