about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--editor/pamcat.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/editor/pamcat.c b/editor/pamcat.c
index db24ef98..c980c355 100644
--- a/editor/pamcat.c
+++ b/editor/pamcat.c
@@ -487,7 +487,6 @@ concatenateLeftRightPbm(struct pam *        const outpamP,
         for (i = 0; i < fileCt; ++i) {
             const LrImgCtlPbm * const imgCtlP = &imgCtl[i];
 
-            pm_message("BRYAN: row=%u, i=%u, padtop=%u", row, i, imgCtlP->padtop);
             if ((row == 0 && imgCtlP->padtop > 0) ||
                 row == imgCtlP->padtop + inpam[i].height) {
 
@@ -502,17 +501,14 @@ concatenateLeftRightPbm(struct pam *        const outpamP,
                 /* Top row has been read to proberow[] to determine
                    background.  Copy it to outrow[].
                 */
-                pm_message("BRYAN: copying proberow");
                 copyBitrow(imgCtlP->proberow, outrow,
                            inpam[i].width, imgCtlP->offset);
             } else if (row >= imgCtlP->padtop &&
                        row < imgCtlP->padtop + inpam[i].height) {
-                pm_message("BRYAN: copying normally");
                 pbm_readpbmrow_bitoffset(
                     inpam[i].file, outrow, inpam[i].width, inpam[i].format,
                     imgCtlP->offset);
             } else {
-                pm_message("Leaving padding");
                 /* It's a row of padding, so outrow[] is already set
                    appropriately.
                 */