pspp-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pspp-cvs] pspp/src language/utilities/ChangeLog language/...


From: Ben Pfaff
Subject: [Pspp-cvs] pspp/src language/utilities/ChangeLog language/...
Date: Mon, 17 Sep 2007 04:00:54 +0000

CVSROOT:        /cvsroot/pspp
Module name:    pspp
Changes by:     Ben Pfaff <blp> 07/09/17 04:00:54

Modified files:
        src/language/utilities: ChangeLog set.q 
        src/libpspp    : ChangeLog copyleft.c 

Log message:
        * set.q (show_warranty): Use fputs to print lack-of-warranty
        statement, instead of msg.  This is because msg now outputs the
        message to output devices, and the output subsystem is not
        prepared to deal with table cells that exceed one page in length.
        Thanks to John Darrington for bug report and review.  Bug #21093.
        (show_copying) Ditto.
        
        * copyleft.c: Add trailing new-lines to lack-of-warranty
        statement.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/pspp/src/language/utilities/ChangeLog?cvsroot=pspp&r1=1.11&r2=1.12
http://cvs.savannah.gnu.org/viewcvs/pspp/src/language/utilities/set.q?cvsroot=pspp&r1=1.28&r2=1.29
http://cvs.savannah.gnu.org/viewcvs/pspp/src/libpspp/ChangeLog?cvsroot=pspp&r1=1.77&r2=1.78
http://cvs.savannah.gnu.org/viewcvs/pspp/src/libpspp/copyleft.c?cvsroot=pspp&r1=1.5&r2=1.6

Patches:
Index: language/utilities/ChangeLog
===================================================================
RCS file: /cvsroot/pspp/pspp/src/language/utilities/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -b -r1.11 -r1.12
--- language/utilities/ChangeLog        14 Sep 2007 23:39:31 -0000      1.11
+++ language/utilities/ChangeLog        17 Sep 2007 04:00:53 -0000      1.12
@@ -1,3 +1,12 @@
+2007-09-16  Ben Pfaff  <address@hidden>
+
+       * set.q (show_warranty): Use fputs to print lack-of-warranty
+       statement, instead of msg.  This is because msg now outputs the
+       message to output devices, and the output subsystem is not
+       prepared to deal with table cells that exceed one page in length.
+       Thanks to John Darrington for bug report and review.  Bug #21093.
+       (show_copying) Ditto.
+
 2007-08-16  Ben Pfaff  <address@hidden>
 
        Implement journaling.  Bug #17240.

Index: language/utilities/set.q
===================================================================
RCS file: /cvsroot/pspp/pspp/src/language/utilities/set.q,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -b -r1.28 -r1.29
--- language/utilities/set.q    24 Aug 2007 05:00:50 -0000      1.28
+++ language/utilities/set.q    17 Sep 2007 04:00:54 -0000      1.29
@@ -858,13 +858,13 @@
 static void
 show_warranty (const struct dataset *ds UNUSED)
 {
-  msg (MN, lack_of_warranty);
+  fputs (lack_of_warranty, stdout);
 }
 
 static void
 show_copying (const struct dataset *ds UNUSED)
 {
-  msg (MN, copyleft);
+  fputs (copyleft, stdout);
 }
 
 int

Index: libpspp/ChangeLog
===================================================================
RCS file: /cvsroot/pspp/pspp/src/libpspp/ChangeLog,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -b -r1.77 -r1.78
--- libpspp/ChangeLog   5 Sep 2007 06:23:03 -0000       1.77
+++ libpspp/ChangeLog   17 Sep 2007 04:00:54 -0000      1.78
@@ -1,3 +1,8 @@
+2007-09-16  Ben Pfaff  <address@hidden>
+
+       * copyleft.c: Add trailing new-lines to lack-of-warranty
+       statement.
+
 2007-09-05 John Darrington <address@hidden>
 
        * getl.c: Add extra members to struct getl_source, to maintain the

Index: libpspp/copyleft.c
===================================================================
RCS file: /cvsroot/pspp/pspp/src/libpspp/copyleft.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -b -r1.5 -r1.6
--- libpspp/copyleft.c  7 Jul 2007 06:30:03 -0000       1.5
+++ libpspp/copyleft.c  17 Sep 2007 04:00:54 -0000      1.6
@@ -25,7 +25,9 @@
 "DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\n"
 "PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\n"
 "EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\n"
-"SUCH DAMAGES.";
+"SUCH DAMAGES.\n"
+"\n"
+"";
 
 const char copyleft[]=""
 "\n"




reply via email to

[Prev in Thread] Current Thread [Next in Thread]