about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--doc/HISTORY13
-rw-r--r--editor/pnmsmooth.c2
2 files changed, 10 insertions, 5 deletions
diff --git a/doc/HISTORY b/doc/HISTORY
index 43283be1..c953cc4e 100644
--- a/doc/HISTORY
+++ b/doc/HISTORY
@@ -6,13 +6,18 @@ CHANGE HISTORY
 
 not yet  BJH  Release 10.51.00
 
-              pnmsmooth: Respect -plain.
+              pnmsmooth: Respect -plain.  Thanks Prophet of the Way
+              <afu@wta.att.ne.jp>.
+
+              pnmsmooth: Don't display pnmconvol messages (i.e. run
+              pnmconvol with -quiet).
 
               pnmsmooth: fix arithmetic overflow with absurdly large
-              convolution matrix dimensions.
+              convolution matrix dimensions.  Thanks Prophet of the Way
+              <afu@wta.att.ne.jp>.
 
-              pnmsmooth: fix bug: wild pointer causes wrong arguments to
-              'pnmconvol'.
+              pnmsmooth: fix wild pointer: causes wrong arguments to
+              'pnmconvol'.  Thanks Prophet of the Way <afu@wta.att.ne.jp>.
 
 10.03.27 BJH  Release 10.50.00
 
diff --git a/editor/pnmsmooth.c b/editor/pnmsmooth.c
index 5d43e5b8..eabe479e 100644
--- a/editor/pnmsmooth.c
+++ b/editor/pnmsmooth.c
@@ -231,7 +231,7 @@ main(int argc, const char ** argv) {
 
         pm_system_lp("pnmconvol", NULL, NULL, NULL, NULL,
                      "pnmconvol", matrixOpt, cmdline.inputFilespec,
-                     "-normalize", plainOpt, NULL);
+                     "-normalize", "-quiet", plainOpt, NULL);
 
         strfree(matrixOpt);
     }