aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLog.ja5
-rw-r--r--src/compose.c4
3 files changed, 13 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 6268a19e..13e0402b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2005-01-19
+ * src/compose.c: compose_insert_sig(): fixed broken signature
+ replacement.
+
+2005-01-19
+
* src/mh.c
src/utils.c
src/procmsg.c: ignore 0-numbered message file. Don't use symbol
diff --git a/ChangeLog.ja b/ChangeLog.ja
index 637526a4..896d77b3 100644
--- a/ChangeLog.ja
+++ b/ChangeLog.ja
@@ -1,5 +1,10 @@
2005-01-19
+ * src/compose.c: compose_insert_sig(): 署名の置換が壊れていたのを
+ 修正。
+
+2005-01-19
+
* src/mh.c
src/utils.c
src/procmsg.c: 0番のメッセージファイルを無視するようにした。
diff --git a/src/compose.c b/src/compose.c
index 6c1e2d53..ac840b43 100644
--- a/src/compose.c
+++ b/src/compose.c
@@ -1499,8 +1499,10 @@ static void compose_insert_sig(Compose *compose, gboolean replace)
GTK_TEXT_SEARCH_TEXT_ONLY,
&start_iter, &end_iter, NULL);
- if (found)
+ if (found) {
gtk_text_buffer_delete(buffer, &start_iter, &end_iter);
+ iter = start_iter;
+ }
}
g_free(compose->sig_str);