* set.q (show_warranty): Use fputs to print lack-of-warranty
authorBen Pfaff <blp@gnu.org>
Mon, 17 Sep 2007 04:00:53 +0000 (04:00 +0000)
committerBen Pfaff <blp@gnu.org>
Mon, 17 Sep 2007 04:00:53 +0000 (04:00 +0000)
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.

src/language/utilities/ChangeLog
src/language/utilities/set.q
src/libpspp/ChangeLog
src/libpspp/copyleft.c

index 35e636878a68069cfbdc859e86dcb75ce0c4ff91..5701c38fc460aa2403c6fc97b69e591819dee445 100644 (file)
@@ -1,3 +1,12 @@
+2007-09-16  Ben Pfaff  <blp@gnu.org>
+
+       * 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  <blp@gnu.org>
 
        Implement journaling.  Bug #17240.
index 5552984b3f068e6c55fc6ed6a798a16ea4bad184..6b56941fb0e7171de5643fc54fb255c93488821d 100644 (file)
@@ -858,13 +858,13 @@ show_all_cc (void)
 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 9c1b654d9cd6d35bb19b671da60dbd823a8a55c0..e00ac0c288209ef8f6aa0c4046422887915b3df4 100644 (file)
@@ -1,3 +1,8 @@
+2007-09-16  Ben Pfaff  <blp@gnu.org>
+
+       * copyleft.c: Add trailing new-lines to lack-of-warranty
+       statement.
+
 2007-09-05 John Darrington <john@darrington.wattle.id.au>
 
        * getl.c: Add extra members to struct getl_source, to maintain the
index 8f8710512345839469b18ecbb89df21f80fbb7d7..55dfff99a4ecf9cdf155327e2fa2cecc06fca065 100644 (file)
@@ -25,7 +25,9 @@ const char lack_of_warranty[]=""
 "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"