-2001-10-18 [hoa] 0.6.3claws29
+2001-10-21 [paul] 0.6.3claws30
+
+ * src/compose.c
+ insert a DOS text file from the compose window
+ into the composed message text (removes CRs characters)
+ Submitted by Thierry Godefroy <godefroy@imaginet.fr>
+
+ * tools/filter_conv.pl, tools/README
+ automatically use ~/.sylpheed as working directory
+ print out confirmation message on completion
+
+ * correct Hoa's last ChangeLog.claws entry
+
+2001-10-20 [hoa] 0.6.3claws29
* src/grouplistdialog.c
bugfix (another ?) to give the right
gtk_stext_freeze(text);
- while (fgets(buf, sizeof(buf), fp) != NULL)
- gtk_stext_insert(text, NULL, NULL, NULL, buf, -1);
+ while (fgets(buf, sizeof(buf), fp) != NULL) {
+ if (strlen(buf) > 1 && buf[strlen(buf) - 2] == '\r' && buf[strlen(buf) - 1] == '\n') {
+ buf[strlen(buf) - 2] = '\n';
+ buf[strlen(buf) - 1] = 0;
+ }
+ gtk_stext_insert(text, NULL, NULL, NULL, buf, -1);
+ }
gtk_stext_thaw(text);