fix typo and add licence header
authorPaul Mangan <paul@claws-mail.org>
Mon, 23 Dec 2002 12:49:38 +0000 (12:49 +0000)
committerPaul Mangan <paul@claws-mail.org>
Mon, 23 Dec 2002 12:49:38 +0000 (12:49 +0000)
ChangeLog.claws
configure.in
src/quote_fmt_parse.y

index 5e4f5ff9357aee2872a8a23ed05875b122a338be..fe27a7f8ac0c1fed819a50324a8833e367d40549 100644 (file)
@@ -1,3 +1,8 @@
+2002-12-23 [paul]      0.8.6claws128
+
+       * src/quote_fmt_parse.y
+               fix typo and add licence header
+
 2002-12-23 [paul]      0.8.6claws127
 
        * po/en_GB.po
 2002-12-23 [paul]      0.8.6claws127
 
        * po/en_GB.po
index 4497a45ebf4bee21e9ae5bb1142d8af578f7edc6..69d90e1873f04fec7951c44b14c1ff0943044a9c 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=8
 MICRO_VERSION=6
 INTERFACE_AGE=0
 BINARY_AGE=0
 MICRO_VERSION=6
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=claws127
+EXTRA_VERSION=claws128
 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
 
 dnl set $target
 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
 
 dnl set $target
index 6b7e975dffbda8082da3668014fcb6c7eaf348a4..49939373d9b832482a7438ace964c51b412dc2e0 100644 (file)
@@ -1,3 +1,22 @@
+/*
+ * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
+ * Copyright (C) 1999-2002 Hiroyuki Yamamoto and the Sylpheed-Claws Team
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
 %{
 
 #include "defs.h"
 %{
 
 #include "defs.h"
@@ -428,7 +447,7 @@ special:
                        else {
                                while (fgets(buf, sizeof(buf), fp) != NULL) {
                                        strcrchomp(buf);
                        else {
                                while (fgets(buf, sizeof(buf), fp) != NULL) {
                                        strcrchomp(buf);
-                                       if (strncmp(buf, "-- \n", 5) == 0)
+                                       if (strncmp(buf, "-- \n", 4) == 0)
                                                break;
                                        INSERT(buf);
                                }
                                                break;
                                        INSERT(buf);
                                }
@@ -452,7 +471,7 @@ special:
                        else {
                                while (fgets(buf, sizeof(buf), fp) != NULL) {
                                        strcrchomp(buf);
                        else {
                                while (fgets(buf, sizeof(buf), fp) != NULL) {
                                        strcrchomp(buf);
-                                       if (strncmp(buf, "-- \n", 5) == 0)
+                                       if (strncmp(buf, "-- \n", 4) == 0)
                                                break;
                                        if (quote_str)
                                                INSERT(quote_str);
                                                break;
                                        if (quote_str)
                                                INSERT(quote_str);