* set.q (show_warranty): Use fputs to print lack-of-warranty
[pspp-builds.git] / src / language / utilities / set.q
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