diff options
author | Alex Cherepanov <alex.cherepanov@artifex.com> | 2009-12-30 17:30:30 +0000 |
---|---|---|
committer | Alex Cherepanov <alex.cherepanov@artifex.com> | 2009-12-30 17:30:30 +0000 |
commit | c4a6928ffcfbed18f57f545523196f1a7e11b3c1 (patch) | |
tree | b29c2c9dbbef56651c406e5316ec99a1468f7650 /gs/contrib | |
parent | bf663aabe01a9774b2fbf5a7d15e05c94823f643 (diff) |
Remove C++ comments (//) and commented out code because this is not compatible
with old compilers and breaks our coding standard. Comments were introduced
by rev. 9664 and 9778. Bug 691032.
git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@10571 a1074d23-0009-0410-80fe-cf8c14f379e6
Diffstat (limited to 'gs/contrib')
-rw-r--r-- | gs/contrib/gdevcd8.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/gs/contrib/gdevcd8.c b/gs/contrib/gdevcd8.c index 2666bf0b3..bdca4e6cc 100644 --- a/gs/contrib/gdevcd8.c +++ b/gs/contrib/gdevcd8.c @@ -3361,11 +3361,9 @@ cdnj500_start_raster_mode(gx_device_printer * pdev, int paper_size, /* Color use */ fprintf(prn_stream, "@PJL SET RENDERMODE = COLOR \n"); -// fprintf(prn_stream, "@PJL SET RENDERMODE = TRUEBLACK \n"); /* Color correction */ fprintf(prn_stream, "@PJL SET COLORSPACE = SRGB \n"); -// fprintf(prn_stream, "@PJL SET COLORSPACE = DEVICERGB \n"); /* Predef qual set (TODO: need add options) */ if (cdj850->quality == DRAFT) { @@ -3382,16 +3380,6 @@ cdnj500_start_raster_mode(gx_device_printer * pdev, int paper_size, fprintf(prn_stream, "@PJL SET MAXDETAIL = ON \n"); } - /* Set "remove margins between pages" (need not separated pages) */ -// fprintf(prn_stream, "@PJL SET NESTMODE = OFF \n"); - - /* Disable automatic cutter */ -// fprintf(prn_stream, "@PJL SET CUTTER = OFF \n"); - - /* Set page size (useful for standart format cutting) */ -// fprintf(prn_stream, "@PJL SET PAPERLENGTH = %d \n", (int)(y * 72.0)); -// fprintf(prn_stream, "@PJL SET PAPERWIDTH = %d \n" , (int)(x * 72.0)); - /* Set the language to PCL3 enhanced */ fprintf(prn_stream, "@PJL ENTER LANGUAGE=PCL3GUI \n"); |