diff options
Diffstat (limited to 'src/LYPrint.c')
-rw-r--r-- | src/LYPrint.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/LYPrint.c b/src/LYPrint.c index e85706e1..a54a341c 100644 --- a/src/LYPrint.c +++ b/src/LYPrint.c @@ -443,7 +443,7 @@ check_recall: } } - print_wwwfile_to_fd(outfile_fp, FALSE); /* FILE */ + print_wwwfile_to_fd(outfile_fp, FALSE, FALSE); /* FILE */ if (keypad_mode) printlist(outfile_fp,FALSE); @@ -631,7 +631,7 @@ PRIVATE void send_file_to_mail ARGS3( } else if (!isPMDF) { fprintf(outfile_fp, "X-URL: %s\n\n", newdoc->address); } - print_wwwfile_to_fd(outfile_fp, FALSE); /* MAIL */ + print_wwwfile_to_fd(outfile_fp, TRUE, FALSE); /* MAIL */ if (keypad_mode) printlist(outfile_fp, FALSE); LYCloseTempFP(outfile_fp); @@ -772,7 +772,7 @@ PRIVATE void send_file_to_mail ARGS3( "<!-- X-URL: %s -->\n<BASE HREF=\"%s\">\n\n", newdoc->address, content_base); } - print_wwwfile_to_fd(outfile_fp, FALSE); /* MAIL */ + print_wwwfile_to_fd(outfile_fp, TRUE, FALSE); /* MAIL */ if (keypad_mode) printlist(outfile_fp, FALSE); @@ -830,7 +830,7 @@ PRIVATE void send_file_to_printer ARGS4( "<!-- X-URL: %s -->\n<BASE HREF=\"%s\">\n\n", newdoc->address, content_base); } - print_wwwfile_to_fd(outfile_fp, FALSE); /* PRINTER */ + print_wwwfile_to_fd(outfile_fp, FALSE, FALSE); /* PRINTER */ if (keypad_mode) printlist(outfile_fp, FALSE); @@ -1001,7 +1001,7 @@ PRIVATE void send_file_to_screen ARGS3( } if (Lpansi) printf("\033[5i"); - print_wwwfile_to_fd(outfile_fp, FALSE); /* SCREEN */ + print_wwwfile_to_fd(outfile_fp, FALSE, FALSE); /* SCREEN */ if (keypad_mode) printlist(outfile_fp, FALSE); |